Skip to content

Commit

Permalink
Add extra-traits feature to syn dependency and update syn to 1.0.109
Browse files Browse the repository at this point in the history
See diskussion in GH-76
  • Loading branch information
kellerkindt committed Apr 4, 2023
1 parent b189ef6 commit 5b8c49f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ asn1rs-model = { version = "0.2.2", path = "asn1rs-model", optional = true }
asn1rs-macros = { version = "0.2.2", path = "asn1rs-macros", optional = true }

[dev-dependencies]
syn = {version = "1.0.61", features = ["full", "visit"] }
syn = {version = "1.0.109", features = ["full", "visit", "extra-traits"] }
quote = "1.0.3"
proc-macro2 = "1.0.10"

Expand Down
2 changes: 1 addition & 1 deletion asn1rs-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ debug-proc-macro = []

[dependencies]
asn1rs-model = { version = "0.2.2", path = "../asn1rs-model" }
syn = {version = "1.0.61", features = ["full"] }
syn = {version = "1.0.109", features = ["full", "visit", "extra-traits"] }
quote = "1.0.3"
2 changes: 1 addition & 1 deletion asn1rs-model/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ readme = "README.md"
[dependencies]
backtrace = "0.3.9"
codegen = "0.1.3"
syn = {version = "1.0.61", features = ["full"] }
syn = {version = "1.0.109", features = ["full", "extra-traits"] }
quote = "1.0.3"
proc-macro2 = "1.0.10"
strum = "0.19.2"
Expand Down

0 comments on commit 5b8c49f

Please sign in to comment.