Skip to content

Commit 7bb91d0

Browse files
committed
scylla-cql: Depend on exact version of scylla-macros
This allows doc(hidden) APIs used by macros to be changed. Without it, we would need to consider the possibility of newer scylla-macros being used with older scylla-cql, so those doc(hidden) APIs would need to adhere to semver. Keeping them semver-compatible would be difficult than the rest of the API because semver-checks (correctly) ignore doc(hidden) items.
1 parent e6a2ea0 commit 7bb91d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scylla-cql/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ categories = ["database"]
1111
license = "MIT OR Apache-2.0"
1212

1313
[dependencies]
14-
scylla-macros = { version = "0.7.0", path = "../scylla-macros" }
14+
scylla-macros = { version = "=0.7.0", path = "../scylla-macros" }
1515
byteorder = "1.3.4"
1616
bytes = "1.0.1"
1717
tokio = { version = "1.34", features = ["io-util", "time"] }

0 commit comments

Comments
 (0)