Skip to content

Commit

Permalink
deps update
Browse files Browse the repository at this point in the history
  • Loading branch information
kilork committed Apr 21, 2024
1 parent 31833d1 commit 5430b7b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.65.0
- name: Build
run: cargo build --verbose
run: cargo build
- name: Run tests
run: cargo test --verbose
run: cargo test
- name: Build with UMA2
run: cargo build --features uma2
- name: Run tests with UMA2
run: cargo test --verbose --features uma2
run: cargo test --features uma2
- name: Build with Microsoft feature
run: cargo build --features microsoft
- name: Run tests with Microsoft feature
run: cargo test --verbose --features uma2
run: cargo test --features uma2
- name: Build with rustls
run: cargo build --no-default-features --features rustls
- name: Run tests with rustls
run: cargo test --no-default-features --verbose --features rustls
run: cargo test --no-default-features --features rustls
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ rustls = ["reqwest/rustls-tls"]
[dependencies]
lazy_static = "1.4"
serde_json = { version = "1", default-features = false }
base64 = "0.21"
biscuit = "0.6"
base64 = "0.22"
biscuit = "0.7"
thiserror = "1"
validator = { version = "0.16", features = ["derive"] }
validator = { version = "0.18", features = ["derive"] }
mime = "0.3"

[dependencies.url]
Expand All @@ -46,6 +46,6 @@ default-features = false
features = ["derive"]

[dependencies.reqwest]
version = "0.11"
version = "0.12"
default-features = false
features = ["json"]

0 comments on commit 5430b7b

Please sign in to comment.