31 lines
942 B
TOML
31 lines
942 B
TOML
[package]
|
|
name = "importer-cli"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
rust-version.workspace = true
|
|
readme.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
bip39 = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
dirs = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "net", "signal"] }
|
|
tracing = { workspace = true }
|
|
|
|
importer-contract = { path = "../importer-contract" }
|
|
nym-validator-client = { workspace = true }
|
|
nym-bin-common = { workspace = true, features = ["basic_tracing"] }
|
|
nym-network-defaults = { workspace = true }
|
|
|
|
nym-mixnet-contract-common = { workspace = true }
|
|
nym-vesting-contract-common = { workspace = true }
|