2023-03-01 04:10:52 +01:00
|
|
|
[package]
|
|
|
|
name = "kanidm_lib_crypto"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2023-06-21 12:33:01 +02:00
|
|
|
[features]
|
|
|
|
tpm = ["dep:tss-esapi"]
|
|
|
|
|
2023-03-01 04:10:52 +01:00
|
|
|
[dependencies]
|
2023-06-27 03:38:22 +02:00
|
|
|
argon2 = { workspace = true }
|
|
|
|
base64 = { workspace = true }
|
|
|
|
base64urlsafedata = { workspace = true }
|
|
|
|
hex = { workspace = true }
|
|
|
|
kanidm_proto = { workspace = true }
|
2023-03-01 04:10:52 +01:00
|
|
|
|
|
|
|
# We need to explicitly ask for openssl-sys so that we get the version propagated
|
|
|
|
# into the build.rs for legacy feature checks.
|
2023-06-27 03:38:22 +02:00
|
|
|
openssl-sys = { workspace = true }
|
|
|
|
openssl = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
2023-03-01 04:10:52 +01:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
2023-06-27 03:38:22 +02:00
|
|
|
tracing = { workspace = true }
|
2023-06-21 12:33:01 +02:00
|
|
|
tss-esapi = { workspace = true, optional = true }
|
2023-09-29 04:02:13 +02:00
|
|
|
uuid = { workspace = true }
|
2023-03-01 04:10:52 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-06-27 03:38:22 +02:00
|
|
|
sketching = { workspace = true }
|