This is an automated email from the ASF dual-hosted git repository.
kriskras99 pushed a change to branch feat/macrotest
in repository https://gitbox.apache.org/repos/asf/avro-rs.git
discard 4be1edd fix: Steps don't share anything?
discard 14debf5 fix: Expanded files are missing license header
discard a993356 feat: Use `macrotest` to test the expanded macro code
add 2137b81 fix: Run tests on fewer targets (#503)
add 927847a feat: Replace `from_avro_datum*` functions with
`GenericDatumReader` (#496)
add bd4bf03 feat: Use `macrotest` to test the expanded macro code
add bdac65d fix: Expanded files are missing license header
add 1d7572d fix: Steps don't share anything
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 (4be1edd)
\
N -- N -- N refs/heads/feat/macrotest (1d7572d)
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:
.github/workflows/test-lang-rust-ci.yml | 4 -
.github/workflows/test-lang-rust-clippy.yml | 1 -
avro/src/lib.rs | 21 +-
avro/src/reader/datum.rs | 351 ++++++++++++++++++++++++++++
avro/src/reader/mod.rs | 174 +-------------
avro/src/schema/mod.rs | 12 +-
avro/src/schema/resolve.rs | 2 +-
avro/src/serde/de.rs | 6 +-
avro/src/writer/datum.rs | 8 +-
avro/tests/avro-3786.rs | 32 ++-
avro/tests/avro-3787.rs | 12 +-
avro/tests/io.rs | 63 +++--
avro/tests/schema.rs | 14 +-
avro/tests/to_from_avro_datum_schemata.rs | 24 +-
14 files changed, 472 insertions(+), 252 deletions(-)
create mode 100644 avro/src/reader/datum.rs