026d3a6466
* Get wireguard keypair as arg instead of reading it from disk * Move keypair out of NymNode * Remove legacy auth client
32 lines
1.0 KiB
TOML
32 lines
1.0 KiB
TOML
[package]
|
|
name = "nym-authenticator-client"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
bincode.workspace = true
|
|
futures.workspace = true
|
|
semver.workspace = true
|
|
thiserror.workspace = true
|
|
tokio-util.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
|
|
nym-authenticator-requests = { path = "../common/authenticator-requests" }
|
|
nym-bandwidth-controller = { path = "../common/bandwidth-controller" }
|
|
nym-credentials-interface = { path = "../common/credentials-interface" }
|
|
nym-crypto = { path = "../common/crypto" }
|
|
nym-registration-common = { path = "../common/registration" }
|
|
nym-sdk = { path = "../sdk/rust/nym-sdk" }
|
|
nym-service-provider-requests-common = { path = "../common/service-provider-requests-common" }
|
|
nym-validator-client = { path = "../common/client-libs/validator-client" }
|
|
nym-wireguard-types = { path = "../common/wireguard-types" }
|