31 lines
846 B
TOML
31 lines
846 B
TOML
[package]
|
|
name = "konduit-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
# license.workspace = true // TBC
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[package.metadata.release]
|
|
release = false
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.100"
|
|
bech32 = "0.11.0"
|
|
clap = { version = "4.5.18", features = ["cargo", "derive"] }
|
|
cryptoxide = "0.5.1"
|
|
hex = "0.4.3"
|
|
pallas-crypto = "0.33.0"
|
|
# minicbor = { version = "0.25.1", features = ["alloc", "derive"] }
|
|
rand = "0.9.2"
|
|
reqwest = { version = "0.12.23", features = ["json"] }
|
|
serde = { version = "1.0.213", features = ["derive"] }
|
|
serde_json = "1.0.138"
|
|
tokio = { version = "1.47.1", features = ["full"] }
|
|
cardano-tx-builder = { path = "../cardano-tx-builder" }
|
|
minicbor = "2.1.1"
|