9a68702d4d
* revamping mixnode connfig * wip * native client config revamping * wip * building socks5 * using const for mixnnode config template * compiling updated gateway * nym-api * nym-sdk * everything compiling once more but definitely not compatible with CI and older versions (yet) * creating full directory structure on init * renamed paths to storage_paths and fixed mixnode template * mixnode config migration * gateway config migration * nym-api config migration * native client config migration * socks5 client config migration * NR config migration * removed deprecations (that will be resolved in the following PRs) + fixed clippy * nym-connect clippy * nym-connect config updates * outfox fixes * defined socks5 lib config * clippy * fixed wasm client build * removed explicit packet_type argument when starting base client it's known implicitly from the previously passed config struct * Empty commit * fixed re-using gateway information when client configs are re-initialised * fixed borrowing id value in nym-connect * post-rebase fixes * updated 'old_config' versions --------- Co-authored-by: Tommy Verrall <tommy@nymtech.net>
26 lines
1017 B
TOML
26 lines
1017 B
TOML
[package]
|
|
name = "nym-credential-client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4.0", features = ["cargo", "derive"] }
|
|
log = "0.4"
|
|
serde = { workspace = true, features = ["derive"] }
|
|
thiserror = "1.0"
|
|
tokio = { version = "1.24.1", features = ["rt-multi-thread", "net", "signal", "macros"] } # async runtime
|
|
|
|
|
|
nym-bandwidth-controller = { path = "../../common/bandwidth-controller" }
|
|
nym-client-core = { path = "../../common/client-core" }
|
|
nym-config = { path = "../../common/config" }
|
|
nym-credentials = { path = "../../common/credentials" }
|
|
nym-credential-storage = { path = "../../common/credential-storage" }
|
|
nym-bin-common = { path = "../../common/bin-common"}
|
|
nym-network-defaults = { path = "../../common/network-defaults" }
|
|
nym-pemstore = { path = "../../common/pemstore" }
|
|
nym-validator-client = { path = "../../common/client-libs/validator-client", features = ["nyxd-client"] }
|
|
|