26 lines
852 B
TOML
26 lines
852 B
TOML
[package]
|
|
name = "nym-credential-utils"
|
|
description = "Utils crate for dealing with zknym credentials"
|
|
version.workspace = true
|
|
edition = "2021"
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.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 = { workspace = true }
|
|
nym-credentials = { workspace = true }
|
|
nym-credentials-interface = { workspace = true }
|
|
nym-credential-storage = { workspace = true, features = ["persistent-storage"] }
|
|
nym-validator-client = { workspace = true }
|
|
nym-config = { workspace = true }
|
|
nym-client-core = { workspace = true }
|
|
nym-ecash-time = { workspace = true }
|