cf3fd00350
* - standardise versions for all nym-sdk workspace dependencies - prepend sqlx-pool-guard with 'nym-' * Test remove nym-api from deps * Add oneliner to client_pool doc comments * Add note to commented out docs.rs link in sdk * remove nym-api from script * add publishing file * bring non-binary / contract / tools into workspace version * added more info to publishing.md * make deps workspace version * remove uploaded sphinx-types crate from script * remove erroueously included ignore-defaults * add zeroise to feature * chore: Release * add topology to batch * more cargo versioning * more cargo versioning - wasm utils * more cargo versioning - wasm utils * Add publish=false to manifest for cargo workspaces / crates.io publishing exclusion * remove script now switched to manifest based exclusion * rename import based on rename of contracts-common dep * Making workspace versions for publication + removing unnecessary crates from publication * Remove OOD info from publishing sdk guide * rename contract imports + remove package * temp commit: continuing with removal of path from cargo manifest and replacing with workspace version import for publication * continuing with cargo.toml updates * dryrun only erroring on known version problem crates * remove old published-crates file * Minor comment change * remove default features warning * Additional info on workspace dep comment re publish list * Add missing description to cargo.toml * Fix missing feature flags * Add missing descriptions * Fix remaining path import * Add workspace repo / homepage / documentation links to cargo.toml files * remove workspace version from excluded crate * Remove todo descriptions * Minor comment change * add homepage etc * move from bls git import to nym_bls_fork crate * Modify rest of imports from path to workspace import, excluding binaries * add directory/homepage info * fix cargo fmt * add notes to gitignore * better solution to contracts/ experiment * wasm -> nym_wasm crate renaming * fix fatfinger * add metadata to ecash cargo.toml * stub publishing guide * fix misrevolved netlink- version * Fixes and block publication of rebase re: LP * first pass @ workflows
139 lines
4.3 KiB
TOML
139 lines
4.3 KiB
TOML
# Copyright 2023 - Nym Technologies SA <contact@nymtech.net>
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
[package]
|
|
name = "nym-node"
|
|
version = "1.23.0"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
anyhow.workspace = true
|
|
arc-swap = { workspace = true }
|
|
bip39 = { workspace = true, features = ["zeroize"] }
|
|
bs58.workspace = true
|
|
bloomfilter = { workspace = true }
|
|
celes = { workspace = true }
|
|
cfg-if = { workspace = true }# country codes
|
|
colored = { workspace = true }
|
|
console-subscriber = { workspace = true, optional = true }
|
|
csv = { workspace = true }
|
|
clap = { workspace = true, features = ["cargo", "env"] }
|
|
futures = { workspace = true }
|
|
humantime-serde = { workspace = true }
|
|
human-repr = { workspace = true }
|
|
ipnetwork = { workspace = true }
|
|
indicatif = { workspace = true }
|
|
rand = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
tracing.workspace = true
|
|
tracing-indicatif = { workspace = true }
|
|
tracing-subscriber.workspace = true
|
|
tokio = { workspace = true, features = ["macros", "sync", "rt-multi-thread"] }
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
tokio-stream = { workspace = true }
|
|
toml = { workspace = true }
|
|
url = { workspace = true, features = ["serde"] }
|
|
zeroize = { workspace = true, features = ["zeroize_derive"] }
|
|
|
|
# system info:
|
|
cupid = { workspace = true }
|
|
sysinfo = { workspace = true }
|
|
|
|
nym-bin-common = { workspace = true, features = [
|
|
"basic_tracing",
|
|
"output_format",
|
|
] }
|
|
nym-client-core-config-types = { workspace = true, features = [
|
|
"disk-persistence",
|
|
] }
|
|
nym-config = { workspace = true }
|
|
nym-credential-verification = { workspace = true }
|
|
nym-crypto = { workspace = true, features = ["asymmetric", "rand"] }
|
|
nym-nonexhaustive-delayqueue = { workspace = true }
|
|
nym-mixnet-client = { workspace = true }
|
|
nym-noise = { workspace = true }
|
|
nym-noise-keys = { workspace = true }
|
|
nym-pemstore = { workspace = true }
|
|
nym-sphinx-acknowledgements = { workspace = true }
|
|
nym-sphinx-addressing = { workspace = true }
|
|
nym-sphinx-framing = { workspace = true }
|
|
nym-sphinx-types = { workspace = true }
|
|
nym-sphinx-forwarding = { workspace = true }
|
|
nym-sphinx-routing = { workspace = true }
|
|
nym-sphinx-params = { workspace = true }
|
|
nym-statistics-common = { workspace = true }
|
|
nym-task = { workspace = true }
|
|
nym-types = { workspace = true }
|
|
nym-validator-client = { workspace = true }
|
|
nym-wireguard = { workspace = true }
|
|
nym-wireguard-types = { workspace = true }
|
|
nym-verloc = { workspace = true }
|
|
nym-metrics = { workspace = true}
|
|
nym-gateway-stats-storage = { workspace = true }
|
|
nym-topology = { workspace = true }
|
|
nym-http-api-client = { workspace = true }
|
|
|
|
# http server
|
|
# useful for `#[axum_macros::debug_handler]`
|
|
#axum-macros = "0.3.8"
|
|
axum.workspace = true
|
|
time = { workspace = true, features = ["serde"] }
|
|
tower-http = { workspace = true, features = ["fs"] }
|
|
utoipa = { workspace = true, features = ["axum_extras", "time"] }
|
|
utoipa-swagger-ui = { workspace = true, features = ["axum"] }
|
|
|
|
nym-http-api-common = { workspace = true, features = [
|
|
"utoipa",
|
|
"output",
|
|
"middleware",
|
|
] }
|
|
nym-node-requests = { workspace = true, default-features = false, features = [
|
|
"openapi",
|
|
] }
|
|
nym-node-metrics = { workspace = true }
|
|
|
|
# nodes:
|
|
nym-gateway = { path = "../gateway" }
|
|
nym-network-requester = { path = "../service-providers/network-requester" }
|
|
nym-ip-packet-router = { path = "../service-providers/ip-packet-router" }
|
|
|
|
|
|
# throughput tester to recreate lioness
|
|
# we don't care about particular versions - just pull whatever is used by sphinx
|
|
lioness = "*"
|
|
chacha = "0.3.0"
|
|
arrayref = "*"
|
|
blake2 = "=0.8.1"
|
|
sha2 = { workspace = true }
|
|
hkdf = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "benchmarks"
|
|
harness = false
|
|
|
|
|
|
[build-dependencies]
|
|
# temporary bonding information v1 (to grab and parse nym-mixnode and nym-gateway package versions)
|
|
cargo_metadata = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = { workspace = true, features = ["async_tokio"] }
|
|
rand_chacha = { workspace = true }
|
|
|
|
[features]
|
|
tokio-console = ["console-subscriber", "nym-task/tokio-tracing"]
|
|
|
|
[lints]
|
|
workspace = true
|