Skip to content

Commit 00d1773

Browse files
committed
Fixed missing tokio feature in scylla-cql
Contrary to previous assumptions, tokio feature "io-util" is required for `scylla-cql` crate to build. Moreover, I added the new crate to Cargo workspace.
1 parent 4f5a43d commit 00d1773

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ members = [
33
"examples",
44
"scylla",
55
"scylla-macros",
6+
"scylla-cql",
67
]

scylla-cql/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ scylla-macros = { version = "0.1.1", path = "../scylla-macros"}
1414
byteorder = "1.3.4"
1515
bytes = "1.0.1"
1616
num_enum = "0.5"
17-
tokio = "1.12"
17+
tokio = { version = "1.12", features = ["io-util"] }
1818
snap = "1.0"
1919
uuid = "1.0"
2020
thiserror = "1.0"

0 commit comments

Comments
 (0)