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>
53 lines
1.3 KiB
TOML
53 lines
1.3 KiB
TOML
[package]
|
|
name = "nym-bin-common"
|
|
version = "0.5.0"
|
|
description = "Common code for nym binaries"
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[dependencies]
|
|
atty = "0.2"
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
clap_complete = "4.0"
|
|
clap_complete_fig = "4.0"
|
|
log = { workspace = true }
|
|
pretty_env_logger = "0.4.0"
|
|
semver = "0.11"
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true, optional = true }
|
|
|
|
## tracing
|
|
tracing-subscriber = { version = "0.3.16", features = [
|
|
"env-filter",
|
|
], optional = true }
|
|
tracing-tree = { version = "0.2.2", optional = true }
|
|
opentelemetry-jaeger = { version = "0.18.0", optional = true, features = [
|
|
"rt-tokio",
|
|
"collector_client",
|
|
"isahc_collector_client",
|
|
] }
|
|
tracing-opentelemetry = { version = "0.19.0", optional = true }
|
|
opentelemetry = { version = "0.19.0", optional = true, features = ["rt-tokio"] }
|
|
|
|
|
|
[build-dependencies]
|
|
vergen = { version = "=7.4.3", default-features = false, features = [
|
|
"build",
|
|
"git",
|
|
"rustc",
|
|
"cargo",
|
|
] }
|
|
|
|
[features]
|
|
default = []
|
|
output_format = ["serde_json"]
|
|
tracing = [
|
|
"tracing-subscriber",
|
|
"tracing-tree",
|
|
"opentelemetry-jaeger",
|
|
"tracing-opentelemetry",
|
|
"opentelemetry",
|
|
]
|