Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 51 additions & 51 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion cumulus/pallets/parachain-system/proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "Apache-2.0"
proc-macro = true

[dependencies]
syn = "2.0.38"
syn = "2.0.39"
proc-macro2 = "1.0.64"
quote = "1.0.33"
proc-macro-crate = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion polkadot/node/gum/proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ targets = ["x86_64-unknown-linux-gnu"]
proc-macro = true

[dependencies]
syn = { version = "2.0.38", features = ["extra-traits", "full"] }
syn = { version = "2.0.39", features = ["extra-traits", "full"] }
quote = "1.0.28"
proc-macro2 = "1.0.56"
proc-macro-crate = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion polkadot/xcm/procedural/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ proc-macro = true
[dependencies]
proc-macro2 = "1.0.56"
quote = "1.0.28"
syn = "2.0.38"
syn = "2.0.39"
Inflector = "0.11.4"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion substrate/client/chain-spec/derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ proc-macro = true
proc-macro-crate = "2.0.0"
proc-macro2 = "1.0.56"
quote = "1.0.28"
syn = "2.0.38"
syn = "2.0.39"
2 changes: 1 addition & 1 deletion substrate/client/tracing/proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ proc-macro = true
proc-macro-crate = "2.0.0"
proc-macro2 = "1.0.56"
quote = { version = "1.0.28", features = ["proc-macro"] }
syn = { version = "2.0.38", features = ["extra-traits", "full", "parsing", "proc-macro"] }
syn = { version = "2.0.39", features = ["extra-traits", "full", "parsing", "proc-macro"] }
2 changes: 1 addition & 1 deletion substrate/frame/contracts/proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ proc-macro = true
[dependencies]
proc-macro2 = "1.0.56"
quote = "1.0.28"
syn = { version = "2.0.38", features = ["full"] }
syn = { version = "2.0.39", features = ["full"] }

[dev-dependencies]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
proc-macro = true

[dependencies]
syn = { version = "2.0.38", features = ["full", "visit"] }
syn = { version = "2.0.39", features = ["full", "visit"] }
quote = "1.0.28"
proc-macro2 = "1.0.56"
proc-macro-crate = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion substrate/frame/staking/reward-curve/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ proc-macro = true
proc-macro-crate = "2.0.0"
proc-macro2 = "1.0.56"
quote = "1.0.28"
syn = { version = "2.0.38", features = ["full", "visit"] }
syn = { version = "2.0.39", features = ["full", "visit"] }

[dev-dependencies]
sp-runtime = { path = "../../../primitives/runtime" }
2 changes: 1 addition & 1 deletion substrate/frame/support/procedural/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cfg-expr = "0.15.5"
itertools = "0.10.3"
proc-macro2 = "1.0.56"
quote = "1.0.28"
syn = { version = "2.0.38", features = ["full"] }
syn = { version = "2.0.39", features = ["full"] }
frame-support-procedural-tools = { path = "tools" }
macro_magic = { version = "0.5.0", features = ["proc_support"] }
proc-macro-warning = { version = "1.0.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion substrate/frame/support/procedural/tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ targets = ["x86_64-unknown-linux-gnu"]
proc-macro-crate = "2.0.0"
proc-macro2 = "1.0.56"
quote = "1.0.28"
syn = { version = "2.0.38", features = ["extra-traits", "full", "visit"] }
syn = { version = "2.0.39", features = ["extra-traits", "full", "visit"] }
frame-support-procedural-tools-derive = { path = "derive" }
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ proc-macro = true
[dependencies]
proc-macro2 = "1.0.56"
quote = { version = "1.0.28", features = ["proc-macro"] }
syn = { version = "2.0.38", features = ["extra-traits", "full", "parsing", "proc-macro"] }
syn = { version = "2.0.39", features = ["extra-traits", "full", "parsing", "proc-macro"] }
2 changes: 1 addition & 1 deletion substrate/primitives/api/proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ proc-macro = true

[dependencies]
quote = "1.0.28"
syn = { version = "2.0.38", features = ["extra-traits", "fold", "full", "visit"] }
syn = { version = "2.0.39", features = ["extra-traits", "fold", "full", "visit"] }
proc-macro2 = "1.0.56"
blake2 = { version = "0.10.4", default-features = false }
proc-macro-crate = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion substrate/primitives/core/hashing/proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ proc-macro = true

[dependencies]
quote = "1.0.28"
syn = { version = "2.0.38", features = ["full", "parsing"] }
syn = { version = "2.0.39", features = ["full", "parsing"] }
sp-core-hashing = { path = "..", default-features = false }
2 changes: 1 addition & 1 deletion substrate/primitives/debug-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ proc-macro = true

[dependencies]
quote = "1.0.28"
syn = "2.0.38"
syn = "2.0.39"
proc-macro2 = "1.0.56"

[features]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ proc-macro-crate = "2.0.0"
proc-macro2 = "1.0.56"
quote = "1.0.28"
expander = "2.0.0"
syn = { version = "2.0.38", features = ["extra-traits", "fold", "full", "visit"] }
syn = { version = "2.0.39", features = ["extra-traits", "fold", "full", "visit"] }
2 changes: 1 addition & 1 deletion substrate/primitives/version/proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ proc-macro = true
codec = { package = "parity-scale-codec", version = "3.6.1", features = ["derive"] }
proc-macro2 = "1.0.56"
quote = "1.0.28"
syn = { version = "2.0.38", features = ["extra-traits", "fold", "full", "visit"] }
syn = { version = "2.0.39", features = ["extra-traits", "fold", "full", "visit"] }

[dev-dependencies]
sp-version = { path = ".." }