[package]
edition = "2024"
name = "taproot-assets"
version = "0.0.2"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-level Rust SDK bundling Taproot-Asset types, RPC client, and more."
readme = "README.md"
keywords = [
"bitcoin",
"taproot",
"assets",
"lightning",
"sdk",
]
categories = ["cryptography::cryptocurrencies"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ffranr/taproot-assets-rs"
resolver = "2"
[features]
default = [
"rpc",
"std",
]
rpc = ["dep:taproot-assets-rpc"]
std = []
[lib]
name = "taproot_assets"
path = "src/lib.rs"
[dependencies.bitcoin]
version = "0.32.6"
default-features = false
[dependencies.taproot-assets-core]
version = "0.0.2"
[dependencies.taproot-assets-rpc]
version = "0.0.2"
optional = true
[dependencies.taproot-assets-types]
version = "0.0.2"
[dependencies.tokio]
version = "1.37"
features = [
"macros",
"rt-multi-thread",
]