Skip to content

Commit

Permalink
Fix env and msrv
Browse files Browse the repository at this point in the history
  • Loading branch information
Metaphorme committed Nov 29, 2024
1 parent ac10035 commit 0b71494
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update_msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ jobs:
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
git add Cargo.toml
git commit -m "Set MSVC into ${{ env.MSRV }}"
git commit -m "Set MSRV into ${{ env.MSRV }}"
git push
6 changes: 2 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ documentation = "https://docs.rs/ezcheck"
readme = "README.md"
authors = ["Heqi Liu [email protected]"]
license = "MIT"

# MSRV
rust-version = "1.71.0"
rust-version = "1.74.1"

[dependencies]
md2 = { version = "0.10", optional = true }
Expand All @@ -26,4 +24,4 @@ clap = { version = "4.5", features = ["derive"] }
default = ["mix_backend"]
hashes_backend = ["md2", "md4", "md-5", "sha1", "sha2", "digest"]
ring_backend = ["ring"]
mix_backend = ["md2", "md4", "md-5", "sha1", "sha2", "digest", "ring"]
mix_backend = ["md2", "md4", "md-5", "sha1", "sha2", "digest", "ring"]
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@ $ x env use ezcheck

### Build from source

#### Requirements

* [Rust 1.71.0+](./Cargo.toml#L13)
[![MSRV](https://img.shields.io/crates/msrv/ezcheck)](./Cargo.toml#L11)

#### Build

Expand Down
4 changes: 1 addition & 3 deletions README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@ $ x env use ezcheck

### 从源码编译

#### 编译要求

* [Rust 1.71.0+](./Cargo.toml#L13)
[![MSRV](https://img.shields.io/crates/msrv/ezcheck)](./Cargo.toml#L11)

#### 构建

Expand Down

0 comments on commit 0b71494

Please sign in to comment.