Skip to content

Commit

Permalink
setting msrv to 1.79
Browse files Browse the repository at this point in the history
  • Loading branch information
yaleman committed Nov 7, 2024
1 parent 2761cc3 commit f1d453f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust_version: [stable, 1.70.0]
rust_version: [stable, 1.79.0]
os:
- ubuntu-latest
- windows-latest
Expand Down
9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "kanidm-hsm-crypto"
description = "A library for easily interacting with a HSM or TPM"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
license = "MPL-2.0"
homepage = "https://github.com/kanidm/hsm-crypto/"
repository = "https://github.com/kanidm/hsm-crypto/"
authors = ["William Brown <[email protected]>"]
rust-version = "1.79"

[features]
# default = ["tpm"]
Expand All @@ -19,7 +20,9 @@ hex = "0.4.3"
openssl = "^0.10.57"
serde = { version = "^1.0", features = ["derive"] }
tracing = "^0.1.37"
tss-esapi-sys = { version = "0.5.0", optional = true, features = ["generate-bindings"] }
tss-esapi-sys = { version = "0.5.0", optional = true, features = [
"generate-bindings",
] }
tss-esapi = { version = "=8.0.0-alpha", optional = true }

# tss-esapi-sys = { path = "../rust-tss-esapi/tss-esapi-sys", optional = true, features = ["generate-bindings"] }
Expand All @@ -29,5 +32,3 @@ zeroize = "1.6.0"

[dev-dependencies]
tracing-subscriber = "^0.3.17"


0 comments on commit f1d453f

Please sign in to comment.