This is an automated email from the ASF dual-hosted git repository.
kriskras99 pushed a change to branch feat/documentation
in repository https://gitbox.apache.org/repos/asf/avro-rs.git
omit 779d189 feat(doc): Add documentation for the `AvroSchema` derive
omit 7768bed feat: Simplify `Serializer`
omit 75ca979 fix!: Move `AvroSchema` and `AvroSchemaComponent` to the
`serde` module
omit 2bcb870 fix: Move the `bytes` module to the `serde` module
omit d17eb27 fix(doc): Small improvements
omit f0568f7 feat(derive): Support `with` and `skip` for
`#[serde(transparent)]`
omit d2c3328 feat(derive): Support `#[serde(transparent)]`
add ac387e8 chore(deps): Bump thiserror from 2.0.17 to 2.0.18 (#408)
add e9f6978 chore: Extract RecordField related structs to
src/schema/record_field.rs
add f90ccc6 Revert "chore: Extract RecordField related structs to
src/schema/record_field.rs"
add 8f5089d chore: Extract RecordField related structs to
src/schema/record_field.rs (#409)
add 5dd5536 chore: Extract RecordSchema into its own module
(src/schema/record/schema.rs) (#410)
add 8397883 fix: Calculate the RecordSchema's `lookup` table on build
(#411)
add 505b7f0 chore: Extract UnionSchema to its own module
(src/schema/union.rs) (#412)
add 060c34f feat(derive): Support `#[serde(transparent)]` (#398)
add c9180e1 fix: UnionSchema::new(...) should not accept duplicate named
schemas (#413)
add fec1951 feat!: Add support for `char`,`u64`,`u128`,`i128` (#414)
add c98949f chore: Extract Parser to its own module
(src/schema/parser.rs) (#415)
add 9b15ed4 fix: Simplify deserializer (#416)
add 66b94cb chore: Extract Name/Namespace/Alias/Aliases to
src/schema/name.rs (#417)
add 2d25087 fix: Support recursive types for
`Schema::independent_canonical_form` (#420)
add 9836cec fix: Be more selective when choosing an union when
serializing bytes with schema (#421)
add a6a4f56 chore(deps): Bump proc-macro2 from 1.0.105 to 1.0.106 (#422)
add 0a113ea chore(deps): Bump quote from 1.0.43 to 1.0.44 (#425)
add 08deef9 fix!: `Name` and `Alias` incorrectly implement `From<&str>`
(#423)
add b7cfdc6 chore: Get rid of anyhow as a dev-dependency (#427)
add 2f5f1e9 chore: Disable the build of TestLogger for WASM32 (#426)
add 6897f3d feat: Simplify `Serializer` (#428)
add 9471469 feat: `RecordSchema/RecordField::builder().name()` accepts
`Into<String>` (#429)
add 62673eb Move the `bytes` module to the `serde` module (#430)
add f6be619 Use RAII for setting the thread locals (#432)
add 1f168be chore: Move `AvroSchema` and `AvroSchemaComponent` to the
`serde` module (#433)
new 8e466e9 feat(doc): Add documentation for the `AvroSchema` derive
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 (779d189)
\
N -- N -- N refs/heads/feat/documentation (8e466e9)
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 1 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 | 23 +-
avro/Cargo.toml | 3 +-
avro/README.md | 12 +-
avro/benches/serde.rs | 30 +-
avro/benches/single.rs | 4 +-
avro/examples/specific_single_object.rs | 2 +-
.../test_interop_single_object_encoding.rs | 2 +-
avro/examples/to_value.rs | 2 +-
avro/src/bytes.rs | 242 ++++
avro/src/decode.rs | 2 +-
avro/src/duration.rs | 3 +-
avro/src/encode.rs | 2 +-
avro/src/error.rs | 15 +
avro/src/lib.rs | 12 +-
avro/src/reader.rs | 3 +-
avro/src/schema/mod.rs | 1523 +-------------------
avro/src/schema/name.rs | 299 ++++
avro/src/schema/parser.rs | 881 +++++++++++
avro/src/schema/record/field.rs | 286 ++++
.../src/schema/record/mod.rs | 15 +-
avro/src/schema/record/schema.rs | 212 +++
avro/src/schema/union.rs | 168 +++
avro/src/schema_compatibility.rs | 2 +-
avro/src/schema_equality.rs | 36 +-
avro/src/serde/de.rs | 468 ++++--
avro/src/serde/derive.rs | 160 +-
avro/src/serde/mod.rs | 11 +-
avro/src/serde/ser.rs | 65 +-
avro/src/serde/ser_schema.rs | 463 +++++-
avro/src/serde/with.rs | 80 +-
avro/src/types.rs | 14 +-
avro/src/writer.rs | 6 +-
avro_derive/Cargo.toml | 4 +-
avro_derive/src/lib.rs | 18 +-
avro_derive/tests/derive.rs | 77 +-
avro_test_helper/src/logger.rs | 3 +-
36 files changed, 3412 insertions(+), 1736 deletions(-)
create mode 100644 avro/src/bytes.rs
create mode 100644 avro/src/schema/name.rs
create mode 100644 avro/src/schema/parser.rs
create mode 100644 avro/src/schema/record/field.rs
copy avro_derive/tests/ui/avro_rs_226_skip_serializing.rs =>
avro/src/schema/record/mod.rs (80%)
create mode 100644 avro/src/schema/record/schema.rs
create mode 100644 avro/src/schema/union.rs