This is an automated email from the ASF dual-hosted git repository.
Kriskras99 pushed a change to branch refactor/derive
in repository https://gitbox.apache.org/repos/asf/avro-rs.git
omit 10792bd refactor: Improve code structure of the derive code
add 9d4383b chore(deps): Bump log from 0.4.32 to 0.4.33 (#563)
add 10d952f chore(deps): Bump trybuild from 1.0.116 to 1.0.117 (#562)
add a71cd6e chore: Fix some lints and move tests into a `#[cfg(tests)]
mod tests` module (#559)
add 89dedc6 refactor: Improve code structure of the derive code
add d8b9dfd fix: Review feedback
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 (10792bd)
\
N -- N -- N refs/heads/refactor/derive (d8b9dfd)
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 | 8 +-
Cargo.toml | 1 +
avro/examples/generate_interop_data.rs | 5 +-
avro/examples/test_interop_data.rs | 5 +-
avro/src/decode.rs | 30 ++---
avro/src/encode.rs | 5 +-
avro/src/schema/mod.rs | 12 +-
avro/src/schema/parser.rs | 2 +-
avro/src/serde/de.rs | 4 +-
avro/src/writer/datum.rs | 4 +-
avro/tests/append_to_existing.rs | 2 +-
avro/tests/shared.rs | 2 +-
avro_derive/src/case.rs | 131 ++++++++++++---------
avro_derive/src/fields.rs | 18 +--
avro_derive/src/structs.rs | 17 ++-
avro_derive/src/utils.rs | 2 +-
.../avro_3709_record_field_attributes.expanded.rs | 16 ++-
.../tests/ui/avro_rs_397_with_expr_string.stderr | 2 +-
18 files changed, 137 insertions(+), 129 deletions(-)