Skip to content

Commit

Permalink
Updated MSRV due to getset update (#48)
Browse files Browse the repository at this point in the history
* Updated MSRV due to getset update

* derive-more-impl on windows requires 1.75.0
  • Loading branch information
CraZySacX authored Jan 21, 2025
1 parent dc810c4 commit 11080e6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
channel: ["1.65.0", "stable", "beta", "nightly"]
channel: ["1.75.0", "stable", "beta", "nightly"]
target: [x86_64-unknown-linux-gnu]
uses: rustyhorde/workflows/.github/workflows/test-all-features.yml@main
with:
Expand All @@ -72,7 +72,7 @@ jobs:
strategy:
matrix:
os: [macos-latest]
channel: ["1.65.0", "stable", "beta", "nightly"]
channel: ["1.75.0", "stable", "beta", "nightly"]
target: [x86_64-apple-darwin]
uses: rustyhorde/workflows/.github/workflows/test-all-features.yml@main
with:
Expand All @@ -86,7 +86,7 @@ jobs:
strategy:
matrix:
os: [windows-latest]
channel: ["1.65.0", "stable", "beta", "nightly"]
channel: ["1.75.0", "stable", "beta", "nightly"]
target: [x86_64-pc-windows-gnu, x86_64-pc-windows-msvc]
uses: rustyhorde/workflows/.github/workflows/test-all-features.yml@main
with:
Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ license = "MIT OR Apache-2.0"
name = "ssss"
readme = "README.md"
repository = "https://github.com/rustyhorde/sss.git"
version = "0.2.1"
rust-version = "1.65.0"
version = "1.0.0"
rust-version = "1.75.0"

[package.metadata.cargo-all-features]
denylist = ["arbitrary"]
Expand All @@ -22,14 +22,14 @@ unstable = []

[dependencies]
arbitrary = { version = "1.4.1", optional = true, features = ["derive"] }
anyhow = "1.0.93"
getset = "0.1.3"
anyhow = "1.0.95"
getset = "0.1.4"
num-bigint = "0.4.6"
num-traits = "0.2.19"
num-integer = "0.1.46"
rand = "0.8.5"
serde = { version = "1.0.214", features = ["derive"] }
thiserror = "2.0.0"
serde = { version = "1.0.217", features = ["derive"] }
thiserror = "2.0.11"

[build-dependencies]
rustversion = "1.0.18"
rustversion = "1.0.19"

0 comments on commit 11080e6

Please sign in to comment.