22 lines
870 B
TOML
22 lines
870 B
TOML
[package]
|
|
name = "nym-credential-utils"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
log = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true }
|
|
time.workspace = true
|
|
|
|
nym-bandwidth-controller = { path = "../../common/bandwidth-controller" }
|
|
nym-credentials = { path = "../../common/credentials" }
|
|
nym-credentials-interface = { path = "../../common/credentials-interface" }
|
|
nym-credential-storage = { path = "../../common/credential-storage", features = ["persistent-storage"] }
|
|
nym-validator-client = { path = "../../common/client-libs/validator-client" }
|
|
nym-config = { path = "../../common/config" }
|
|
nym-client-core = { path = "../../common/client-core" }
|
|
nym-ecash-time = { path = "../../common/ecash-time" } |