-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
34 lines (29 loc) · 1022 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "kanidm-hsm-crypto"
description = "A library for easily interacting with a HSM or TPM"
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"]
tpm = ["dep:tss-esapi", "dep:tss-esapi-sys"]
msextensions = []
[dependencies]
argon2 = { version = "0.5.2", features = ["alloc"] }
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 = { version = "=8.0.0-alpha", optional = true }
# tss-esapi-sys = { path = "../rust-tss-esapi/tss-esapi-sys", optional = true, features = ["generate-bindings"] }
# tss-esapi = { path = "../rust-tss-esapi/tss-esapi", optional = true }
zeroize = "1.6.0"
[dev-dependencies]
tracing-subscriber = "^0.3.17"