Skip to content

Commit

Permalink
📌 zm,zd: Unpin zvariant_utils version in Cargo.toml files
Browse files Browse the repository at this point in the history
Otherwise, it breaks the build for folks who happen to have both zbus 3
and 4 in their dependency tree.

Fixes #652.
  • Loading branch information
zeenix committed Feb 23, 2024
1 parent 92fd25c commit f1a124d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion zbus_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ syn = { version = "1.0.103", features = ["extra-traits", "fold", "full"] }
quote = "1.0.21"
proc-macro-crate = "1.2.1"
regex = "1.6.0"
zvariant_utils = { path = "../zvariant_utils", version = "=1.0.1" }
zvariant_utils = { path = "../zvariant_utils", version = "1.0.1" }

[dev-dependencies]
zbus = { path = "../zbus" }
Expand Down
2 changes: 1 addition & 1 deletion zvariant_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ proc-macro2 = "1.0"
syn = { version = "1.0.103", features = ["extra-traits", "full"] }
quote = "1.0.21"
proc-macro-crate = "1.2.1"
zvariant_utils = { path = "../zvariant_utils", version = "=1.0.1" }
zvariant_utils = { path = "../zvariant_utils", version = "1.0.1" }

[dev-dependencies]
byteorder = "1.4.3"
Expand Down

0 comments on commit f1a124d

Please sign in to comment.