Skip to content

Commit

Permalink
Merge pull request #39 from jontze/chore/dependency-upgrades
Browse files Browse the repository at this point in the history
chore(deps): Upgrade all dependencies
  • Loading branch information
jontze authored Nov 2, 2024
2 parents 0d09716 + 67bcbe4 commit d3a65e0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- stable
- beta
- nightly
- "1.70.0" # MSRV
- "1.75.0" # MSRV
steps:
- uses: actions/checkout@v4
- name: Setup Cache for Rust
Expand All @@ -50,7 +50,7 @@ jobs:
- stable
- beta
- nightly
- "1.70.0" # MSRV
- "1.75.0" # MSRV
steps:
- uses: actions/checkout@v4
- name: Setup Rust
Expand All @@ -70,7 +70,7 @@ jobs:
- stable
- beta
- nightly
- "1.70.0" # MSRV
- "1.75.0" # MSRV
steps:
- uses: actions/checkout@v4
- name: Setup Cache for Rust
Expand All @@ -92,7 +92,7 @@ jobs:
- stable
- beta
- nightly
- "1.70.0" # MSRV
- "1.75.0" # MSRV
steps:
- uses: actions/checkout@v4
- name: Setup Cache for Rust
Expand Down
22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ author = "Jontze <[email protected]>"
description = "API wrapper for the tankerkoenig api"
version = "0.2.0"
edition = "2021"
rust-version = "1.70.0"
rust-version = "1.75.0"
license = "MIT"
homepage = "https://github.com/jontze/tankerkoenig-rs"
repository = "https://github.com/jontze/tankerkoenig-rs"
Expand All @@ -18,29 +18,29 @@ exclude = [
]

[dependencies]
thiserror = "1.0.30"
serde_json = "1.0.72"
async-trait = "0.1.72"
thiserror = "1.0.66"
serde_json = "1.0.132"
async-trait = "0.1.83"

[dependencies.serde]
version = "1.0.131"
version = "1.0.214"
features = ["derive"]

[dependencies.strum]
version = "0.26"
version = "0.26.3"
features = ["derive"]

[dependencies.reqwest]
version = "0.12.0"
version = "0.12.9"
default-features = false
features = ["rustls-tls"]

[dev-dependencies]
futures = "0.3.28"
mockall = "0.12.1"
wiremock = "0.6.0"
futures = "0.3.31"
mockall = "0.13.0"
wiremock = "0.6.2"

[dev-dependencies.tokio]
version = "1.19.2"
version = "1.41.0"
features = ["full"]

0 comments on commit d3a65e0

Please sign in to comment.