Skip to content

Commit

Permalink
Merge pull request #495 from wprzytula/scylla-cql-dependency-fix
Browse files Browse the repository at this point in the history
Fixed missing tokio feature in scylla-cql
  • Loading branch information
piodul authored Aug 8, 2022
2 parents 4f5a43d + 59f3a9e commit db8d528
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
run: cargo clippy --verbose --examples --tests
- name: Cargo check without features
run: cargo check --manifest-path "scylla/Cargo.toml" --features ""
- name: Build scylla-cql
run: cargo build --verbose --all-targets --manifest-path "scylla-cql/Cargo.toml"
- name: Build
run: cargo build --verbose --examples
- name: Run tests
Expand All @@ -49,3 +51,5 @@ jobs:
run: cargo check --verbose --examples --tests
- name: MSRV cargo check without features
run: cargo check --verbose --manifest-path "scylla/Cargo.toml"
- name: MSRV cargo check scylla-cql
run: cargo check --verbose --all-targets --manifest-path "scylla-cql/Cargo.toml"
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ members = [
"examples",
"scylla",
"scylla-macros",
"scylla-cql",
]
2 changes: 1 addition & 1 deletion scylla-cql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ scylla-macros = { version = "0.1.1", path = "../scylla-macros"}
byteorder = "1.3.4"
bytes = "1.0.1"
num_enum = "0.5"
tokio = "1.12"
tokio = { version = "1.12", features = ["io-util"] }
snap = "1.0"
uuid = "1.0"
thiserror = "1.0"
Expand Down

0 comments on commit db8d528

Please sign in to comment.