Skip to content

Commit

Permalink
Bump min versions of quote, syn, and proc-macro2
Browse files Browse the repository at this point in the history
This ensures we get the performance gains of quote 1.0.18
  • Loading branch information
TedDriggs committed Apr 13, 2022
1 parent 3c7d57a commit 77075f4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Expand Up @@ -21,9 +21,9 @@ darling_core = { version = "=0.13.4", path = "core" }
darling_macro = { version = "=0.13.4", path = "macro" }

[dev-dependencies]
proc-macro2 = "1.0.26"
quote = "1.0.9"
syn = "1.0.69"
proc-macro2 = "1.0.37"
quote = "1.0.18"
syn = "1.0.91"

[features]
default = ["suggestions"]
Expand Down
6 changes: 3 additions & 3 deletions core/Cargo.toml
Expand Up @@ -16,8 +16,8 @@ suggestions = ["strsim"]

[dependencies]
ident_case = "1.0.1"
proc-macro2 = "1.0.26"
quote = "1.0.9"
syn = { version = "1.0.69", features = ["full", "extra-traits"] }
proc-macro2 = "1.0.37"
quote = "1.0.18"
syn = { version = "1.0.91", features = ["full", "extra-traits"] }
fnv = "1.0.7"
strsim = { version = "0.10.0", optional = true }
4 changes: 2 additions & 2 deletions macro/Cargo.toml
Expand Up @@ -11,8 +11,8 @@ license = "MIT"
edition = "2018"

[dependencies]
quote = "1.0.9"
syn = "1.0.69"
quote = "1.0.18"
syn = "1.0.91"
darling_core = { version = "=0.13.4", path = "../core" }

[lib]
Expand Down

0 comments on commit 77075f4

Please sign in to comment.