-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from rozbb/bump-0-9-0
Bump to 0.9.0
- Loading branch information
Showing
4 changed files
with
21 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- run: cargo test | ||
- run: cargo test --all-features | ||
|
||
rustfmt: | ||
runs-on: ubuntu-latest | ||
|
@@ -62,3 +62,16 @@ jobs: | |
run: cargo build --target thumbv7em-none-eabi --release --no-default-features | ||
- name: no_std / cargo hack | ||
run: cargo hack build --target thumbv7em-none-eabi --release --each-feature --exclude-features default,std | ||
|
||
msrv: | ||
name: Current MSRV is 1.60.0 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
# Re-resolve Cargo.lock with minimal versions | ||
- uses: dtolnay/rust-toolchain@nightly | ||
- run: cargo update -Z minimal-versions | ||
# Now check that `cargo build` works with respect to the oldest possible | ||
# deps and the stated MSRV | ||
- uses: dtolnay/[email protected] | ||
- run: cargo build --all-features |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ repository = "https://github.com/rozbb/strobe-rs" | |
documentation = "https://docs.rs/strobe-rs" | ||
description = "An implementation of the Strobe protocol framework in pure Rust" | ||
readme = "README.md" | ||
version = "0.8.1" | ||
version = "0.9.0" | ||
edition = "2021" | ||
authors = ["Michael Rosenberg <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
|
@@ -18,14 +18,14 @@ serialize_secret_state = ["serde", "serde-big-array"] | |
|
||
[dependencies] | ||
bitflags = "1.3" | ||
byteorder = { version = "1.4", default-features = false } | ||
byteorder = { version = "1.5", default-features = false } | ||
keccak = "0.1" | ||
serde = { version = "1", optional = true, default-features = false, features = [ | ||
"derive", | ||
] } | ||
serde-big-array = { version = "0.4", optional = true } | ||
subtle = { version = "2.4", default-features = false } | ||
zeroize = { version = "1.5", features = ["derive"] } | ||
subtle = { version = "2.6", default-features = false } | ||
zeroize = { version = "1.8", features = ["derive"] } | ||
|
||
[dev-dependencies] | ||
criterion = { version = "0.5", features = ["html_reports"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters