Skip to content

Commit

Permalink
Update MSRV to 1.70.0 (#98)
Browse files Browse the repository at this point in the history
Because `tokio-macros v2.4.0` requires rustc 1.70 or newer so cqrs needs
to update the MSRV to 1.70.0.

  error: package `tokio-macros v2.4.0` cannot be built because it requires rustc 1.70
  or newer, while the currently active rustc version is 1.63.0
  • Loading branch information
lambdalisue authored Sep 30, 2024
1 parent 7f9ec87 commit a618fce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
include:
- build: msrv
os: ubuntu-latest
rust: 1.63.0
rust: 1.70.0
- build: stable
os: ubuntu-latest
rust: stable
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ documentation = "https://docs.rs/cqrs-es"
repository = "https://github.com/serverlesstechnology/cqrs"
readme = "README.md"
exclude = ["docs"]
rust-version = "1.71.0"
rust-version = "1.70.0"

[dependencies]
async-trait = "0.1"
serde = { version = "1.0", features = ["derive"]}
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "^1.0.37"
tokio = { version = "1", features = ["macros", "sync", "rt"] }
Expand Down

0 comments on commit a618fce

Please sign in to comment.