25 lines
564 B
TOML
25 lines
564 B
TOML
[package]
|
|
name = "konduit-tx"
|
|
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"
|
|
minicbor = { version = "0.25.1", features = ["alloc", "derive"] }
|
|
cardano-tx-builder = { path = "../cardano-tx-builder" }
|
|
|
|
# Maybe for pretty printing??
|
|
hex = "0.4.3"
|
|
# Maybe for testing
|
|
rand = "0.9.2"
|