Skip to content

Commit 2de1a3d

Browse files
Fixed syn not using 'full' features
1 parent 3612a7f commit 2de1a3d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fstrings"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
authors = ["Daniel Henry-Mantilla <[email protected]>"]
55
edition = "2018"
66

@@ -19,7 +19,7 @@ categories = ["rust-patterns", ]
1919
proc-macro-hack = "0.5.8"
2020

2121
[dependencies.proc-macro]
22-
version = "0.1.3"
22+
version = "0.1.4"
2323
package = "fstrings-proc-macro"
2424
path = "src/proc_macro"
2525

src/proc_macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ path = "mod.rs"
44

55
[package]
66
name = "fstrings-proc-macro"
7-
version = "0.1.3"
7+
version = "0.1.4"
88
authors = ["Daniel Henry-Mantilla <[email protected]>"]
99
edition = "2018"
1010

@@ -15,7 +15,7 @@ license = "MIT"
1515
proc-macro2 = "0.4.30"
1616
proc-macro-hack = "0.5.8"
1717
proc-quote = "0.2.2"
18-
syn = "0.15.42"
18+
syn = { version = "0.15.42", features = ["full", ]}
1919

2020
[features]
2121
verbose-expansions = ["syn/extra-traits", ]

0 commit comments

Comments
 (0)