[package]
edition = "2021"
rust-version = "1.75"
name = "tai-core"
version = "0.1.2"
authors = ["TaiStream"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for Tai — PTB builders, signers, JSON-RPC client, and typed reads for the Tai agent-economy launchpad on Sui."
homepage = "https://github.com/TaiStream/Tai-Launchpad"
documentation = "https://docs.rs/tai-core"
readme = "README.md"
keywords = [
"sui",
"agents",
"launchpad",
"move",
"ai",
]
categories = [
"api-bindings",
"cryptography::cryptocurrencies",
]
license = "MIT"
repository = "https://github.com/TaiStream/Tai-Launchpad"
[lib]
name = "tai_core"
path = "src/lib.rs"
[[test]]
name = "testnet_reads"
path = "tests/testnet_reads.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64ct]
version = "1"
features = ["std"]
[dependencies.bcs]
version = "0.1"
[dependencies.blake2]
version = "0.10"
[dependencies.ed25519-dalek]
version = "2"
features = [
"std",
"rand_core",
]
[dependencies.hex]
version = "0.4"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"fs",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2"