1ac262ec90
* Initial commit * Cherry pick from develop * Keep track of fragments * A bunch of data formats, graphs * Use mix_id for display * Proper API routes * Add openapi + swagger ui * Update locustfile * Add node stats endpoint * Add Swagger and locust to readme * All node stats endpoint * Update dependencies to use workspace * Bunch of pedantic fixes * More version updates, fmt * More lints * Add new_from_env for NymTopology * Nym API endpoint to submit monitoring results (#4616) * Nym API endpoint to submit monitoring results * Add gateway monitoring results * Cleanup, ergonomics * Weaponize * Finalize results submissions * Monitor message signing and verification * Update README * Axum graceful shutdown * More grtacefulness * Restructure result submission * Less fragile routes * Remove gateway unique index on node_id
56 lines
1.8 KiB
TOML
56 lines
1.8 KiB
TOML
[package]
|
|
name = "nym-topology"
|
|
version = "0.1.0"
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
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]
|
|
bs58 = { workspace = true }
|
|
log = { workspace = true }
|
|
rand = { workspace = true }
|
|
reqwest = { workspace = true, features = ["json"] }
|
|
thiserror = { workspace = true }
|
|
async-trait = { workspace = true, optional = true }
|
|
semver = { version = "0.11" }
|
|
|
|
# 'serializable' feature
|
|
serde = { workspace = true, features = ["derive"], optional = true }
|
|
serde_json = { workspace = true, optional = true }
|
|
|
|
# 'wasm-serde-types' feature
|
|
tsify = { workspace = true, features = ["js"], optional = true }
|
|
wasm-bindgen = { workspace = true, optional = true }
|
|
|
|
## internal
|
|
nym-bin-common = { path = "../bin-common" }
|
|
nym-config = { path = "../config" }
|
|
nym-crypto = { path = "../crypto", features = ["sphinx", "outfox"] }
|
|
nym-mixnet-contract-common = { path = "../cosmwasm-smart-contracts/mixnet-contract" }
|
|
nym-sphinx-addressing = { path = "../nymsphinx/addressing" }
|
|
nym-sphinx-types = { path = "../nymsphinx/types", features = [
|
|
"sphinx",
|
|
"outfox",
|
|
] }
|
|
nym-sphinx-routing = { path = "../nymsphinx/routing" }
|
|
|
|
|
|
# I'm not sure how to feel about pulling in this dependency here...
|
|
nym-api-requests = { path = "../../nym-api/nym-api-requests" }
|
|
|
|
|
|
# 'wasm-serde-types' feature
|
|
wasm-utils = { path = "../wasm/utils", default-features = false, optional = true }
|
|
|
|
[features]
|
|
default = ["provider-trait"]
|
|
provider-trait = ["async-trait"]
|
|
wasm-serde-types = ["tsify", "wasm-bindgen", "wasm-utils"]
|
|
serializable = ["serde", "serde_json"]
|
|
outfox = []
|