aca98ab04f
* Add a cache for the credentials seen before on top-up * Verify seen credentials on top ups * Add warning log for timestamp subtraction * Add unit test
57 lines
2.1 KiB
TOML
57 lines
2.1 KiB
TOML
[package]
|
|
name = "nym-authenticator"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
bincode = { workspace = true }
|
|
bs58 = { workspace = true }
|
|
bytes = { workspace = true }
|
|
clap = { workspace = true, features = ["cargo", "derive"] }
|
|
defguard_wireguard_rs = { workspace = true }
|
|
fastrand = { workspace = true }
|
|
futures = { workspace = true }
|
|
ipnetwork = { workspace = true }
|
|
log = { workspace = true }
|
|
rand = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "net"] }
|
|
tokio-stream = { workspace = true }
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
url = { workspace = true }
|
|
|
|
nym-authenticator-requests = { path = "../../common/authenticator-requests" }
|
|
nym-bin-common = { path = "../../common/bin-common", features = [
|
|
"clap",
|
|
"output_format",
|
|
"basic_tracing",
|
|
] }
|
|
nym-client-core = { path = "../../common/client-core", features = ["cli"] }
|
|
nym-config = { path = "../../common/config" }
|
|
nym-credentials-interface = { path = "../../common/credentials-interface" }
|
|
nym-credential-verification = { path = "../../common/credential-verification" }
|
|
nym-crypto = { path = "../../common/crypto" }
|
|
nym-gateway-requests = { path = "../../common/gateway-requests" }
|
|
nym-gateway-storage = { path = "../../common/gateway-storage" }
|
|
nym-id = { path = "../../common/nym-id" }
|
|
nym-network-defaults = { path = "../../common/network-defaults" }
|
|
nym-sdk = { path = "../../sdk/rust/nym-sdk" }
|
|
nym-service-providers-common = { path = "../common" }
|
|
nym-service-provider-requests-common = { path = "../../common/service-provider-requests-common" }
|
|
nym-sphinx = { path = "../../common/nymsphinx" }
|
|
nym-task = { path = "../../common/task" }
|
|
nym-types = { path = "../../common/types" }
|
|
nym-wireguard = { path = "../../common/wireguard" }
|
|
nym-wireguard-types = { path = "../../common/wireguard-types" }
|
|
|
|
[dev-dependencies]
|
|
mock_instant = "0.5.3"
|