Skip to content

Commit db8d528

Browse files
authored
Merge pull request #495 from wprzytula/scylla-cql-dependency-fix
Fixed missing tokio feature in scylla-cql
2 parents 4f5a43d + 59f3a9e commit db8d528

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
run: cargo clippy --verbose --examples --tests
2727
- name: Cargo check without features
2828
run: cargo check --manifest-path "scylla/Cargo.toml" --features ""
29+
- name: Build scylla-cql
30+
run: cargo build --verbose --all-targets --manifest-path "scylla-cql/Cargo.toml"
2931
- name: Build
3032
run: cargo build --verbose --examples
3133
- name: Run tests
@@ -49,3 +51,5 @@ jobs:
4951
run: cargo check --verbose --examples --tests
5052
- name: MSRV cargo check without features
5153
run: cargo check --verbose --manifest-path "scylla/Cargo.toml"
54+
- name: MSRV cargo check scylla-cql
55+
run: cargo check --verbose --all-targets --manifest-path "scylla-cql/Cargo.toml"

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)