40 lines
1.6 KiB
TOML
40 lines
1.6 KiB
TOML
[package]
|
|
name = "explorer-api"
|
|
version = "1.1.43"
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
clap = { workspace = true, features = ["cargo", "derive"] }
|
|
dotenvy = { workspace = true }
|
|
humantime-serde = { workspace = true }
|
|
isocountry = { workspace = true }
|
|
itertools = { workspace = true }
|
|
log = { workspace = true }
|
|
maxminddb = { workspace = true }
|
|
okapi = { workspace = true, features = ["impl_json_schema"] }
|
|
pretty_env_logger = { workspace = true }
|
|
rand = { workspace = true }
|
|
rand_pcg = { workspace = true }
|
|
rand_seeder = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
rocket = { workspace = true, features = ["json"] }
|
|
rocket_cors = { workspace = true }
|
|
rocket_okapi = { workspace = true, features = ["swagger"] }
|
|
schemars = { workspace = true, features = ["preserve_order"] }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
|
|
nym-bin-common = { path = "../common/bin-common"}
|
|
nym-contracts-common = { path = "../common/cosmwasm-smart-contracts/contracts-common" }
|
|
nym-explorer-api-requests = { path = "explorer-api-requests" }
|
|
nym-mixnet-contract-common = { path = "../common/cosmwasm-smart-contracts/mixnet-contract" }
|
|
nym-network-defaults = { path = "../common/network-defaults" }
|
|
nym-task = { path = "../common/task" }
|
|
nym-validator-client = { path = "../common/client-libs/validator-client", features=["http-client"] }
|