This is an automated email from the ASF dual-hosted git repository.
kriskras99 pushed a change to branch feat/enums
in repository https://gitbox.apache.org/repos/asf/avro-rs.git
discard c9e5be2 wip: Full enum support
discard f304f0a feat: Log warning if record field contains a logical type
discard 1bfa689 fix!: Stricter schema parsing
discard f1da45b chore: Extract Block from reader/mod.rs into reader/block.rs
(#475)
discard d0c93a3 chore: Rename reader.rs to reader/mod.rs (#474)
discard 0bac764 feat!: Use bon builder style instead of several methods (#472)
add 3915546 fix: Only implement field default for `Option<T>`
add ec7abd8 feat!: Use bon builder style instead of several methods (#472)
add 4fd7c2c chore: Rename reader.rs to reader/mod.rs (#474)
add 4e186db chore: Extract Block from reader/mod.rs into reader/block.rs
(#475)
add 1d39dba chore: Extract Single Object encoding related structs from
reader/mod.rs (#478)
add e13171c chore(deps): Bump wasm-bindgen-test from 0.3.58 to 0.3.61
(#481)
add c91a5f1 chore: Replace `strum-macros` with `features = ["derive"` on
`strum` and update to `0.28.0` (#483)
add 8028c11 chore(deps): Bump wasm-bindgen-test from 0.3.61 to 0.3.62
(#484)
add 5dc46c0 fix!: Stricter schema parsing (#479)
add 28ebd24 Merge branch 'main' into feat/avro_schema_default
new cb2b76c wip: Full enum support
new 983d90a fix tests
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (c9e5be2)
\
N -- N -- N refs/heads/feat/enums (983d90a)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
Cargo.lock | 52 +++---
avro/Cargo.toml | 3 +-
avro/src/bigdecimal.rs | 3 +-
avro/src/codec.rs | 2 +-
avro/src/error.rs | 4 +-
avro/src/lib.rs | 5 +-
avro/src/reader/mod.rs | 311 +-------------------------------
avro/src/reader/single_object.rs | 333 +++++++++++++++++++++++++++++++++++
avro/src/schema/mod.rs | 57 +++---
avro/src/schema/parser.rs | 2 +-
avro/src/schema/record/field.rs | 20 +--
avro/src/schema/union.rs | 4 +-
avro/src/serde/derive.rs | 34 ++--
avro/src/serde/mod.rs | 8 +-
avro/src/serde/ser.rs | 2 +-
avro/src/serde/ser_schema/mod.rs | 69 +-------
avro/src/serde/ser_schema2/mod.rs | 303 ++++++++++++++++++-------------
avro/src/serde/ser_schema2/record.rs | 3 +-
avro/src/serde/ser_schema2/union.rs | 133 ++++++++------
avro/src/serde/with.rs | 322 ++++++++++++++++++++++++++++++++-
avro/src/types.rs | 4 +-
avro_derive/src/attributes/avro.rs | 20 +--
avro_derive/src/attributes/mod.rs | 16 +-
avro_derive/tests/derive.rs | 62 ++-----
wasm-demo/Cargo.toml | 2 +-
25 files changed, 1054 insertions(+), 720 deletions(-)
create mode 100644 avro/src/reader/single_object.rs