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 1065d1e progress
discard c492f2b wip: Full enum support
omit e07d7a8 fix: Enable `ref_option` lint and fix the warnings it
generates
omit fb7513f feat: Rework `Name` to be more performant
omit 0860320 fix!: Remove unused fields in `RecordField` (`order`,
`position`)
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 9dba371 feat!: Rework `Name` to be more performant (#493)
add 83ffedb feat: Replace `from_avro_datum*` functions with
`GenericDatumReader`
new 0c4f5e4 wip: Full enum support
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 (1065d1e)
\
N -- N -- N refs/heads/feat/enums (0c4f5e4)
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:
.clippy.toml | 1 -
0001-wip-Full-enum-support.patch | 11034 ++++++++++++++++++++++++++++
Cargo.lock | 222 +-
Cargo.toml | 1 -
avro/Cargo.toml | 2 +-
avro/src/bytes.rs | 3 -
avro/src/error.rs | 5 +
avro/src/lib.rs | 21 +-
avro/src/rabin.rs | 8 -
avro/src/reader/datum.rs | 377 +
avro/src/reader/mod.rs | 190 +-
avro/src/schema/mod.rs | 16 +-
avro/src/schema/name.rs | 23 +-
avro/src/schema/parser.rs | 2 +-
avro/src/schema/record/field.rs | 10 +-
avro/src/schema/resolve.rs | 2 +-
avro/src/schema/union.rs | 6 +-
avro/src/serde/de.rs | 6 +-
avro/src/serde/derive.rs | 2 +-
avro/src/types.rs | 31 +-
avro/src/validator.rs | 2 +-
avro/src/writer.rs | 5 +-
avro/tests/avro-3786.rs | 32 +-
avro/tests/avro-3787.rs | 12 +-
avro/tests/io.rs | 65 +-
avro/tests/schema.rs | 18 +-
avro/tests/to_from_avro_datum_schemata.rs | 22 +-
avro_derive/Cargo.toml | 2 +-
avro_derive/src/attributes/mod.rs | 4 +-
wasm-demo/Cargo.toml | 6 +-
30 files changed, 11690 insertions(+), 440 deletions(-)
delete mode 100644 .clippy.toml
create mode 100644 0001-wip-Full-enum-support.patch
create mode 100644 avro/src/reader/datum.rs