This is an automated email from the ASF dual-hosted git repository.
kriskras99 pushed a change to branch feat/generic_datum_reader
in repository https://gitbox.apache.org/repos/asf/avro-rs.git
omit 83ffedb feat: Replace `from_avro_datum*` functions with
`GenericDatumReader`
add 0671342 chore: Make `writer` module a directory module (#497)
add cefc678 chore: Split `writer` module into several submodules (#498)
add ae33647 chore(deps): Bump quote from 1.0.44 to 1.0.45 (#500)
add f18cf95 feat: Replace `to_datum*` functions with `GenericDatumWriter`
(#499)
add 07a261f feat: Replace `from_avro_datum*` functions with
`GenericDatumReader`
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 (83ffedb)
\
N -- N -- N refs/heads/feat/generic_datum_reader (07a261f)
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 | 4 +-
avro/benches/single.rs | 67 ++-
avro/src/lib.rs | 11 +-
avro/src/schema/mod.rs | 9 +-
avro/src/serde/de.rs | 11 +-
avro/src/types.rs | 10 +-
avro/src/writer/datum.rs | 480 ++++++++++++++++++++
avro/src/{writer.rs => writer/mod.rs} | 709 +-----------------------------
avro/src/writer/single_object.rs | 425 ++++++++++++++++++
avro/tests/avro-3786.rs | 27 +-
avro/tests/avro-3787.rs | 11 +-
avro/tests/io.rs | 47 +-
avro/tests/schema.rs | 22 +-
avro/tests/to_from_avro_datum_schemata.rs | 17 +-
avro_derive/Cargo.toml | 2 +-
15 files changed, 1090 insertions(+), 762 deletions(-)
create mode 100644 avro/src/writer/datum.rs
rename avro/src/{writer.rs => writer/mod.rs} (65%)
create mode 100644 avro/src/writer/single_object.rs