Skip to content

Commit

Permalink
fix(docs): bump version of problematic crates
Browse files Browse the repository at this point in the history
As noted here, rust-lang/rust#113152, the crate
`proc-macro2` requires a version > 1.0.60.

This issue has been fixed in `zrpc-macros` 0.7.0-alpha.2 and this commit
relaxes the constraint on `proc-macro2` in `zenoh-flow-derive`.

Signed-off-by: Julien Loudet <julien.loudet@zettascale.tech>
  • Loading branch information
J-Loudet committed Sep 4, 2023
1 parent b3357b0 commit a910377
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ zenoh-plugin-trait = { version = "0.7.2-rc", default-features = false }
zenoh-sync = { version = "0.7.2-rc" }
zenoh-util = { version = "0.7.2-rc" }
zrpc = { version = "0.7.0-alpha.1" }
zrpc-macros = { version = "0.7.0-alpha.1" }
zrpc-macros = { version = "0.7.0-alpha.2" }

[profile.dev]
debug = true
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.70.0
1.70
6 changes: 3 additions & 3 deletions zenoh-flow-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ async-std = { version = "=1.12.0", features = ["attributes"] }
darling = "0.14"
futures = "0.3.5"
proc-macro-error = "1.0.4"
proc-macro2 = "1.0.46"
quote = "1.0.2"
proc-macro2 = "1.0"
quote = "1.0"
serde = { version = "1.0.55", features = ["derive"] }
serde_derive = "1.0.55"
syn = { version = "1.0.11", features = ["full"] }
syn = { version = "1.0", features = ["full"] }
syn-serde = { version = "0.2", features = ["json"] }

[dev-dependencies]
Expand Down

0 comments on commit a910377

Please sign in to comment.