[package]
name = "quantus-cli"
version = "1.2.0"
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"
indicatif = "0.17"
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 = "2.4.0" }
qp-rusty-crystals-hdwallet = { version = "2.3.1" }
qp-dilithium-crypto = { version = "0.3.1", features = ["serde"] }
qp-poseidon = { version = "1.4.0" }
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
blake3 = "1.8"
bytes = "1.11.1"
quinn-proto = "0.11.14"
codec = { package = "parity-scale-codec", version = "3.7", features = ["derive"] }
sp-core = { version = "39.0.0" }
sp-runtime = { version = "45.0.0" }
jsonrpsee = { version = "0.24", features = ["client"] }
subxt = "0.44"
subxt-metadata = "0.44"
anyhow = "1.0"
qp-plonky2 = { version = "1.4.0", default-features = false, features = ["rand", "std"] }
qp-wormhole-circuit = { version = "1.4.0", default-features = false, features = ["std"] }
qp-wormhole-prover = { version = "1.4.0", default-features = false, features = ["std"] }
qp-wormhole-verifier = { version = "1.4.0", default-features = false, features = ["std"] }
qp-wormhole-aggregator = { version = "1.4.0", default-features = false, features = ["rayon", "std"] }
qp-wormhole-inputs = { version = "1.4.0", default-features = false, features = ["std"] }
qp-zk-circuits-common = { version = "1.4.0", default-features = false, features = ["std"] }
qp-wormhole-circuit-builder = { version = "1.4.0" }
[build-dependencies]
qp-wormhole-circuit-builder = { version = "1.4.0" }
[dev-dependencies]
tempfile = "3.8.1"
serial_test = "3.1"
qp-poseidon-core = "1.4.0"
[profile.dev.build-override]
opt-level = 3
[profile.release.build-override]
opt-level = 3