[package]
name = "quantus-cli"
version = "0.2.3"
edition = "2021"
authors = ["Quantus Network"]
license = "Apache-2.0"
description = "Command line interface and library for interacting with the Quantus Network"
homepage = "https://quantus.com"
repository = "https://github.com/Quantus-Network/quantus-cli"
keywords = ["blockchain", "cli", "crypto", "quantum", "quantus-network"]
categories = ["api-bindings", "command-line-utilities", "cryptography"]
readme = "README.md"
[lib]
name = "quantus_cli"
path = "src/lib.rs"
[[bin]]
name = "quantus"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
tokio = { version = "1.46", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.9"
thiserror = "2.0"
colored = "3.0"
sha2 = "0.10"
hex = "0.4"
chrono = { version = "0.4", features = ["serde"] }
dirs = "6.0"
rpassword = "7.4"
argon2 = "0.5"
rand = "0.9"
aes-gcm = "0.10"
qp-rusty-crystals-dilithium = { version = "1.0.3" }
qp-rusty-crystals-hdwallet = { version = "0.1.5" }
qp-poseidon = { version = "0.9.5", features = [
"serde",
] }
qp-dilithium-crypto = { version = "0.1.3", features = ["serde"] }
codec = { package = "parity-scale-codec", version = "3.7", features = [
"derive",
] }
sp-core = { version = "37.0.0" }
sp-runtime = { version = "42.0.0" }
subxt = "0.43.0"
jsonrpsee = { version = "0.24", features = ["client"] }
subxt-metadata = "0.43.0"
[dev-dependencies]
tempfile = "3.8"