This is an automated email from the ASF dual-hosted git repository.
kriskras99 pushed a change to branch feat/name_rework
in repository https://gitbox.apache.org/repos/asf/avro-rs.git
omit 85050c7 fix: Improve error message
omit b45c36c fix: Return errors when `SchemaNameValidator` implementations
are invalid
omit 814c712 feat: Rework `Name` to be more performant
add cc27e5a chore(deps): Bump wasm-bindgen-test from 0.3.63 to 0.3.64
(#494)
add 75da892 chore: Update darling to 0.23, snap to 1.1.1, wasm-bindgen to
0.2.114 (#495)
add 6006444 fix!: Remove unused fields in `RecordField` (`order`,
`position`) (#491)
add f4c1c5e feat: Rework `Name` to be more performant
add 0b32d1e fix: Return errors when `SchemaNameValidator` implementations
are invalid
add 49f770c fix: Improve error message
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 (85050c7)
\
N -- N -- N refs/heads/feat/name_rework (49f770c)
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.
No new revisions were added by this update.
Summary of changes:
Cargo.lock | 222 ++++++++++++--------------
avro/Cargo.toml | 2 +-
avro/src/encode.rs | 9 +-
avro/src/rabin.rs | 8 -
avro/src/schema/mod.rs | 331 +++++++++++++--------------------------
avro/src/schema/parser.rs | 15 +-
avro/src/schema/record/field.rs | 84 ++++------
avro/src/schema/record/mod.rs | 2 +-
avro/src/schema_compatibility.rs | 2 +-
avro/src/schema_equality.rs | 34 ++--
avro/src/serde/derive.rs | 62 ++------
avro/src/serde/ser_schema/mod.rs | 108 ++++++-------
avro/src/types.rs | 97 +++++-------
avro/src/writer.rs | 2 +-
avro/tests/get_record_fields.rs | 53 +------
avro/tests/schema.rs | 2 -
avro_derive/Cargo.toml | 2 +-
avro_derive/src/lib.rs | 52 +++---
avro_derive/tests/derive.rs | 34 +---
wasm-demo/Cargo.toml | 6 +-
20 files changed, 415 insertions(+), 712 deletions(-)