Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TedDriggs/darling
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5ecff50d4d75973de15d352bc2a5808e05094d97
Choose a base ref
..
head repository: TedDriggs/darling
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8234b61d1d7bfc471ba4a3cd3f8500ca217d8b55
Choose a head ref
Showing with 3 additions and 2 deletions.
  1. +1 −0 CHANGELOG.md
  2. +1 −1 Cargo.toml
  3. +1 −1 core/Cargo.toml
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@
## Unreleased

- Support `#[darling(with = ...)]` on the `data` field when deriving `FromDeriveInput`. This allows the use of simpler receiver types, such as a `Vec` of enum variants.
- Bump version of `proc-macro2` to 1.0.86.

## v0.20.10 (July 9, 2024)

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ darling_core = { version = "=0.20.10", path = "core" }
darling_macro = { version = "=0.20.10", path = "macro" }

[dev-dependencies]
proc-macro2 = "1.0.37"
proc-macro2 = "1.0.86"
quote = "1.0.18"
syn = "2.0.15"

2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ suggestions = ["strsim"]

[dependencies]
ident_case = "1.0.1"
proc-macro2 = "1.0.37"
proc-macro2 = "1.0.86"
quote = "1.0.18"
syn = { version = "2.0.15", features = ["full", "extra-traits"] }
fnv = "1.0.7"