Skip to content

Commit b15e839

Browse files
committed
fixup! Bump to v0.11.0
1 parent 4faaa82 commit b15e839

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ reqwest = { version = "0.12", default-features = false }
5757
rustls = { version = "0.23", default-features = false }
5858
rustls-platform-verifier = { version = "0.6.1", default-features = false }
5959

60+
# Proc Macros
61+
quote = "1"
62+
proc-macro2 = { version = "1", features = ["span-locations"] }
63+
syn = { version = "2", features = ["full", "extra-traits"] }
64+
6065
# Profiling: release (optimized) with debug info
6166
[profile.profiling]
6267
inherits = "release"

crates/smb-dtyp-derive/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ categories.workspace = true
1515
proc-macro = true
1616

1717
[dependencies]
18-
quote = "1"
19-
proc-macro2 = "1"
20-
syn = { version = "2", features = ["full"] }
18+
quote.workspace = true
19+
proc-macro2.workspace = true
20+
syn.workspace = true

crates/smb-msg-derive/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ categories.workspace = true
1515
proc-macro = true
1616

1717
[dependencies]
18-
quote = "1"
19-
proc-macro2 = "1"
20-
syn = { version = "2", features = ["full"] }
18+
quote.workspace = true
19+
proc-macro2.workspace = true
20+
syn.workspace = true

0 commit comments

Comments
 (0)