Skip to content

Commit

Permalink
Bump snafu to 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
elprans committed Feb 26, 2024
1 parent da9c81b commit 8e8de9d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 22 deletions.
33 changes: 12 additions & 21 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,36 +8,27 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust_version: [1.65, stable, beta]
rust_version: ["1.72", stable, beta]
timeout-minutes: 15
steps:
- uses: actions/checkout@master
- uses: edgedb/setup-edgedb@v1.2.2
- uses: actions-rs/toolchain@v1
- uses: edgedb/setup-edgedb@v1
- uses: dtolnay/rust-toolchain@be73d7920c329f220ce78e0234b8f96b7ae60248
with:
profile: minimal
components: "cargo,rustc,rust-std"
toolchain: ${{ matrix.rust_version }}
default: true
- name: Test all features
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --all-features
run: |
cargo test --workspace --all-features
- name: Check no default features
uses: actions-rs/cargo@v1
with:
command: check
args: --no-default-features --workspace
run: |
cargo check --no-default-features --workspace
- name: Check with `fs` feature (edgedb-tokio)
uses: actions-rs/cargo@v1
with:
command: check
args: --features=fs --package edgedb-tokio
run: |
cargo check --features=fs --package edgedb-tokio
- name: Check with env feature, edgedb-tokio
uses: actions-rs/cargo@v1
with:
command: check
args: --features=env --package edgedb-tokio
run: |
cargo check --features=env --package edgedb-tokio
- name: Test protocol without default features
working-directory: ./edgedb-protocol
run: |
Expand Down
2 changes: 1 addition & 1 deletion edgedb-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ rust-version = "1.65"

[dependencies]
bytes = "1.5.0"
snafu = {version="0.7.0"}
snafu = {version="0.8.0"}
uuid = "1.1.2"
num-bigint = {version="0.4.3", optional=true}
num-traits = {version="0.2.10", optional=true}
Expand Down

0 comments on commit 8e8de9d

Please sign in to comment.