[package]
edition = "2021"
rust-version = "1.75"
name = "tai-cli"
version = "0.1.2"
authors = ["TaiStream"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "`tai` — the command-line interface for the Tai agent-economy launchpad on Sui. Launch agents, hire them, settle escrow work orders, trade bonding-curve pools."
homepage = "https://github.com/TaiStream/Tai-Launchpad"
documentation = "https://docs.rs/tai-cli"
readme = "README.md"
keywords = [
"sui",
"agents",
"launchpad",
"cli",
"move",
]
categories = [
"command-line-utilities",
"cryptography::cryptocurrencies",
]
license = "MIT"
repository = "https://github.com/TaiStream/Tai-Launchpad"
[[bin]]
name = "tai"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
"wrap_help",
]
[dependencies.dirs]
version = "5"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tai-core]
version = "0.1.2"
[dependencies.tempfile]
version = "3"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"fs",
"time",
"process",
]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]