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
42 lines
1.3 KiB
TOML
42 lines
1.3 KiB
TOML
[package]
|
|
name = "nym-types"
|
|
version = "1.0.0"
|
|
description = "Nym common types"
|
|
authors.workspace = true
|
|
edition = "2021"
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
base64 = { workspace = true }
|
|
eyre = { workspace = true }
|
|
hmac = { workspace = true }
|
|
itertools = { workspace = true }
|
|
log = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
schemars = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
strum = { workspace = true, features = ["derive"] }
|
|
thiserror = { workspace = true }
|
|
ts-rs = { workspace = true }
|
|
url = { workspace = true }
|
|
x25519-dalek = { workspace = true, features = ["static_secrets"] }
|
|
|
|
cosmwasm-std = { workspace = true }
|
|
cosmrs = { workspace = true }
|
|
|
|
nym-validator-client = { path = "../../common/client-libs/validator-client" }
|
|
nym-mixnet-contract-common = { path = "../../common/cosmwasm-smart-contracts/mixnet-contract" }
|
|
nym-vesting-contract-common = { path = "../../common/cosmwasm-smart-contracts/vesting-contract" }
|
|
nym-config = { path = "../../common/config" }
|
|
nym-crypto = { path = "../../common/crypto", features = ["asymmetric"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
generate-ts = ["nym-mixnet-contract-common/generate-ts"]
|