This is an automated email from the ASF dual-hosted git repository.

Kriskras99 pushed a change to branch refactor/derive_implementation
in repository https://gitbox.apache.org/repos/asf/avro-rs.git


 discard c601ca9  refactor: Centralize generating the actual `impl` in the 
`Implementation` struct
 discard 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 190e7b8  chore(deps): Bump quote from 1.0.45 to 1.0.46 (#565)
     add 7349015  fix: Enable `#[serde(remote = "..")]` support (#564)
     add 77531c6  refactor: Improve code structure of the derive code (#560)
     add 8bf4969  refactor: Centralize generating the actual `impl` in the 
`Implementation` struct

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   (c601ca9)
            \
             N -- N -- N   refs/heads/refactor/derive_implementation (8bf4969)

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                                         |  12 +-
 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/serde/derive.rs                           |   3 -
 avro/src/writer/datum.rs                           |   4 +-
 avro/tests/append_to_existing.rs                   |   2 +-
 avro/tests/shared.rs                               |   2 +-
 avro_derive/src/attributes/mod.rs                  |  14 ---
 avro_derive/src/attributes/serde.rs                |  11 +-
 avro_derive/src/case.rs                            | 131 ++++++++++++---------
 avro_derive/src/fields.rs                          |  18 +--
 avro_derive/src/structs.rs                         |  15 ++-
 avro_derive/src/utils.rs                           |   2 +-
 .../avro_3709_record_field_attributes.expanded.rs  |  16 ++-
 avro_derive/tests/serde.rs                         |  68 +++++++++++
 avro_derive/tests/ui/avro_rs_373_remote.rs         |  33 ------
 avro_derive/tests/ui/avro_rs_373_remote.stderr     |   9 --
 .../tests/ui/avro_rs_397_with_expr_string.stderr   |   2 +-
 24 files changed, 214 insertions(+), 192 deletions(-)
 delete mode 100644 avro_derive/tests/ui/avro_rs_373_remote.rs
 delete mode 100644 avro_derive/tests/ui/avro_rs_373_remote.stderr

Reply via email to