Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump snafu to 0.8.1 #296

Merged
merged 1 commit into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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