44 lines
1.3 KiB
TOML
44 lines
1.3 KiB
TOML
[package]
|
|
name = "nym-authenticator-requests"
|
|
description = "Crate defining requests and responses for the Nym authenticator client"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
|
|
[dependencies]
|
|
base64 = { workspace = true }
|
|
bincode = { workspace = true }
|
|
rand = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
semver = { workspace = true }
|
|
strum_macros = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
nym-credentials-interface = { workspace = true }
|
|
nym-crypto = { workspace = true, features = ["asymmetric"] }
|
|
nym-network-defaults = { workspace = true }
|
|
nym-service-provider-requests-common = { workspace = true }
|
|
nym-sphinx = { workspace = true }
|
|
nym-wireguard-types = { workspace = true }
|
|
|
|
## verify:
|
|
hmac = { workspace = true, optional = true }
|
|
sha2 = { workspace = true, optional = true }
|
|
x25519-dalek = { workspace = true, features = ["static_secrets"] }
|
|
|
|
[dev-dependencies]
|
|
nym-test-utils = { workspace = true }
|
|
|
|
[features]
|
|
default = ["verify"]
|
|
# this is moved to a separate feature as we really need clients to import it (especially, *cough*, wasm)
|
|
verify = ["hmac", "sha2"]
|
|
|
|
[lints]
|
|
workspace = true
|