Skip to content

Commit a0f78f3

Browse files
committed
chore: bump proc-macro2 min version to 1.0.63
Fix #917
1 parent bf952b4 commit a0f78f3

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

hydroflow_datalog/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ diagnostics = [ "hydroflow_datalog_core/diagnostics" ]
1717
[dependencies]
1818
quote = "1.0.0"
1919
syn = { version = "2.0.0", features = [ "parsing", "extra-traits" ] }
20-
proc-macro2 = "1.0.57"
20+
proc-macro2 = "1.0.63"
2121
proc-macro-crate = "1.1.0"
2222
# Note: If we ever compile this proc macro crate to WASM (e.g., if we are
2323
# building on a WASM host), we may need to turn diagnostics off for WASM if

hydroflow_datalog_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ diagnostics = [ "hydroflow_lang/diagnostics" ]
1818
quote = "1.0.0"
1919
slotmap = "1.0.6"
2020
syn = { version = "2.0.0", features = [ "parsing", "extra-traits" ] }
21-
proc-macro2 = "1.0.57"
21+
proc-macro2 = "1.0.63"
2222
proc-macro-crate = "1.1.0"
2323
rust-sitter = "0.3.2"
2424
hydroflow_lang = { path = "../hydroflow_lang", version = "^0.4.0" }

hydroflow_lang/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ diagnostics = []
1515
auto_impl = "1.0.1"
1616
itertools = "0.10" # TODO(mingwei): remove when `iter_intersperse` is stabilized.
1717
prettyplease = { version = "0.2.0", features = [ "verbatim" ] }
18-
proc-macro2 = { version = "1.0.57", features = ["span-locations"] }
18+
proc-macro2 = { version = "1.0.63", features = ["span-locations"] }
1919
quote = "1.0.0"
2020
regex = "1.7.0"
2121
serde = "1.0.1"

hydroflow_macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ diagnostics = [ "hydroflow_lang/diagnostics" ]
1818
# building on a WASM host), we may need to turn diagnostics off for WASM if
1919
# proc_macro2 still does not support WASM.
2020
hydroflow_lang = { path = "../hydroflow_lang", version = "^0.4.0" }
21-
proc-macro2 = "1.0.57"
21+
proc-macro2 = "1.0.63"
2222
proc-macro-crate = "1.1.0"
2323
quote = "1.0.0"
2424
syn = { version = "2.0.0", features = [ "parsing", "extra-traits" ] }

multiplatform_test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description = "A simple attribute macro to combine `#[test]` and `#[wasm_bindgen
1111
proc-macro = true
1212

1313
[dependencies]
14-
proc-macro2 = "1.0.57"
14+
proc-macro2 = "1.0.63"
1515
quote = "1.0"
1616

1717
[dev-dependencies]

relalg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "Apache-2.0"
99
anyhow = "1.0"
1010
datadriven = "0.6.0"
1111
hydroflow = { path = "../hydroflow" }
12-
proc-macro2 = "1.0.57"
12+
proc-macro2 = "1.0.63"
1313
quote = "1.0"
1414
syn = { version = "2.0.0", features = [ "parsing", "extra-traits" ] }
1515
prettyplease = "0.2.0"

website_playground/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ hydroflow_datalog_core = { path = "../hydroflow_datalog_core" }
1616
hydroflow_lang = { path = "../hydroflow_lang" }
1717
hydroflow = { path = "../hydroflow" }
1818
prettyplease = "0.2.0"
19-
proc-macro2 = "1.0.57"
19+
proc-macro2 = "1.0.63"
2020
quote = "1.0"
2121
serde = { version = "1.0", features = ["derive"] }
2222
serde-wasm-bindgen = "0.4"

0 commit comments

Comments
 (0)