[package]
edition = "2024"
rust-version = "1.85"
name = "tronz"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Idiomatic, async-first Rust SDK for the TRON network."
readme = "README.md"
keywords = [
"tron",
"blockchain",
"grpc",
"cryptocurrency",
"smart-contracts",
]
categories = [
"cryptography::cryptocurrencies",
"network-programming",
"api-bindings",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/throgxyz/tronz"
resolver = "2"
[features]
contract = ["dep:tronz-contract"]
default = [
"provider-grpc-tls",
"contract",
"signer-local",
]
full = ["default"]
provider-grpc = ["tronz-provider/grpc"]
provider-grpc-tls = ["tronz-provider/grpc-tls"]
signer-keystore = ["tronz-signer/keystore"]
signer-local = []
signer-mnemonic = ["tronz-signer/mnemonic"]
[lib]
name = "tronz"
path = "src/lib.rs"
[dependencies.tronz-contract]
version = "0.2.0"
features = ["provider"]
optional = true
default-features = false
[dependencies.tronz-primitives]
version = "0.2.0"
default-features = false
[dependencies.tronz-provider]
version = "0.2.0"
default-features = false
[dependencies.tronz-signer]
version = "0.2.0"
default-features = false