51779c06a4
* removing wg-gateway-client * bandwidth_provider trait * authenticator client * adapt ip-packet-client * nit * registration_client * accomodate new shutdown and bugfix * sdk changes * cleanup and shutdown management * remove credential mode * error cleanup * better error handling * removing useless cover traffic delay * wasm client stuff * cfg unix * more wasm stuff * change authenticator client to not be blocked by mixnet client
36 lines
1.2 KiB
TOML
36 lines
1.2 KiB
TOML
[package]
|
|
name = "nym-authenticator-requests"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
edition.workspace = true
|
|
license.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 }
|
|
|
|
nym-credentials-interface = { path = "../credentials-interface" }
|
|
nym-crypto = { path = "../crypto", features = ["asymmetric"] }
|
|
nym-network-defaults = { path = "../network-defaults" }
|
|
nym-service-provider-requests-common = { path = "../service-provider-requests-common" }
|
|
nym-sphinx = { path = "../nymsphinx" }
|
|
nym-wireguard-types = { path = "../wireguard-types" }
|
|
|
|
## verify:
|
|
hmac = { workspace = true, optional = true }
|
|
sha2 = { workspace = true, optional = true }
|
|
x25519-dalek = { workspace = true, features = ["static_secrets"] }
|
|
|
|
[features]
|
|
default = ["verify"]
|
|
# this is moved to a separate feature as we really need clients to import it (especially, *cough*, wasm)
|
|
verify = ["hmac", "sha2"]
|