[package]
edition = "2021"
name = "tx3-sdk"
version = "0.10.0"
authors = ["TxPipe"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tx3 Rust SDK"
homepage = "https://github.com/tx3-lang/rust-sdk"
documentation = "https://docs.rs/tx3-sdk"
readme = "README.md"
keywords = [
"blockchain",
"utxo",
"dsl",
]
license = "Apache-2.0"
repository = "https://github.com/tx3-lang/rust-sdk"
[lib]
name = "tx3_sdk"
path = "src/lib.rs"
[[test]]
name = "codegen"
path = "tests/codegen.rs"
[[test]]
name = "error_cases"
path = "tests/error_cases.rs"
[[test]]
name = "happy_path"
path = "tests/happy_path.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.base64]
version = "0.22.1"
[dependencies.bech32]
version = "0.11.0"
[dependencies.bip39]
version = "2.0"
features = ["rand"]
[dependencies.cryptoxide]
version = "0.4.4"
[dependencies.ed25519-bip32]
version = "0.4.1"
[dependencies.hex]
version = "0.4.3"
[dependencies.pallas-addresses]
version = "0.35.0"
[dependencies.pallas-crypto]
version = "0.35.0"
[dependencies.reqwest]
version = "0.12.20"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.schemars]
version = "0.8"
features = ["derive"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.tokio]
version = "1"
features = [
"rt",
"time",
]
default-features = false
[dependencies.uuid]
version = "1.16.0"
features = ["v4"]
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
]