Skip to content

Commit

Permalink
📌 zv,zd,zm: Don't pin zvariant_utils dep
Browse files Browse the repository at this point in the history
We don't always release zvariant_utils together with other crates, so
unlike the macros crates, the versions don't need to be tied together.
This will also allow us to bring zvariant_utils improvements to users
without having to release all dependent packages as well.
  • Loading branch information
zeenix committed Oct 20, 2024
1 parent c36d30f commit 992e5c2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion zbus_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ proc-macro2 = "1.0.81"
syn = { version = "2.0.64", features = ["extra-traits", "fold", "full"] }
quote = "1.0.36"
proc-macro-crate = "3.2.0"
zvariant_utils = { path = "../zvariant_utils", version = "=3.0.0" }
zvariant_utils = { path = "../zvariant_utils", version = "3.0.0" }

[dev-dependencies]
zbus = { path = "../zbus" }
Expand Down
2 changes: 1 addition & 1 deletion zvariant/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ camino = ["dep:camino"]

[dependencies]
zvariant_derive = { version = "=5.0.0", path = "../zvariant_derive" }
zvariant_utils = { version = "=3.0.0", path = "../zvariant_utils" }
zvariant_utils = { version = "3.0.0", path = "../zvariant_utils" }
endi = "1.1.0"
serde = { version = "1.0.200", features = ["derive"] }
static_assertions = "1.1.0"
Expand Down
2 changes: 1 addition & 1 deletion zvariant_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ proc-macro2 = "1.0.81"
syn = { version = "2.0.64", features = ["extra-traits", "full"] }
quote = "1.0.36"
proc-macro-crate = "3.2.0"
zvariant_utils = { path = "../zvariant_utils", version = "=3.0.0" }
zvariant_utils = { path = "../zvariant_utils", version = "3.0.0" }

[dev-dependencies]
zvariant = { path = "../zvariant", features = ["enumflags2"] }
Expand Down

0 comments on commit 992e5c2

Please sign in to comment.