Skip to content

Commit

Permalink
chore: bump proc-macro2 min version to 1.0.63
Browse files Browse the repository at this point in the history
Fix #917
  • Loading branch information
MingweiSamuel committed Oct 2, 2023
1 parent bf952b4 commit a0f78f3
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion hydroflow_datalog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ diagnostics = [ "hydroflow_datalog_core/diagnostics" ]
[dependencies]
quote = "1.0.0"
syn = { version = "2.0.0", features = [ "parsing", "extra-traits" ] }
proc-macro2 = "1.0.57"
proc-macro2 = "1.0.63"
proc-macro-crate = "1.1.0"
# Note: If we ever compile this proc macro crate to WASM (e.g., if we are
# building on a WASM host), we may need to turn diagnostics off for WASM if
Expand Down
2 changes: 1 addition & 1 deletion hydroflow_datalog_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ diagnostics = [ "hydroflow_lang/diagnostics" ]
quote = "1.0.0"
slotmap = "1.0.6"
syn = { version = "2.0.0", features = [ "parsing", "extra-traits" ] }
proc-macro2 = "1.0.57"
proc-macro2 = "1.0.63"
proc-macro-crate = "1.1.0"
rust-sitter = "0.3.2"
hydroflow_lang = { path = "../hydroflow_lang", version = "^0.4.0" }
Expand Down
2 changes: 1 addition & 1 deletion hydroflow_lang/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ diagnostics = []
auto_impl = "1.0.1"
itertools = "0.10" # TODO(mingwei): remove when `iter_intersperse` is stabilized.
prettyplease = { version = "0.2.0", features = [ "verbatim" ] }
proc-macro2 = { version = "1.0.57", features = ["span-locations"] }
proc-macro2 = { version = "1.0.63", features = ["span-locations"] }
quote = "1.0.0"
regex = "1.7.0"
serde = "1.0.1"
Expand Down
2 changes: 1 addition & 1 deletion hydroflow_macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ diagnostics = [ "hydroflow_lang/diagnostics" ]
# building on a WASM host), we may need to turn diagnostics off for WASM if
# proc_macro2 still does not support WASM.
hydroflow_lang = { path = "../hydroflow_lang", version = "^0.4.0" }
proc-macro2 = "1.0.57"
proc-macro2 = "1.0.63"
proc-macro-crate = "1.1.0"
quote = "1.0.0"
syn = { version = "2.0.0", features = [ "parsing", "extra-traits" ] }
Expand Down
2 changes: 1 addition & 1 deletion multiplatform_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "A simple attribute macro to combine `#[test]` and `#[wasm_bindgen
proc-macro = true

[dependencies]
proc-macro2 = "1.0.57"
proc-macro2 = "1.0.63"
quote = "1.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion relalg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "Apache-2.0"
anyhow = "1.0"
datadriven = "0.6.0"
hydroflow = { path = "../hydroflow" }
proc-macro2 = "1.0.57"
proc-macro2 = "1.0.63"
quote = "1.0"
syn = { version = "2.0.0", features = [ "parsing", "extra-traits" ] }
prettyplease = "0.2.0"
2 changes: 1 addition & 1 deletion website_playground/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ hydroflow_datalog_core = { path = "../hydroflow_datalog_core" }
hydroflow_lang = { path = "../hydroflow_lang" }
hydroflow = { path = "../hydroflow" }
prettyplease = "0.2.0"
proc-macro2 = "1.0.57"
proc-macro2 = "1.0.63"
quote = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.4"
Expand Down

0 comments on commit a0f78f3

Please sign in to comment.