[package]
edition = "2021"
name = "tinyhumans"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust SDK for the TinyHumans backend"
readme = "README.md"
license = "GPL-3.0-or-later"
repository = "https://github.com/tinyhumansai/sdk"
[lib]
name = "tinyhumans"
path = "src/lib.rs"
[[example]]
name = "live_contract"
path = "examples/live_contract.rs"
[[test]]
name = "agent_integrations"
path = "tests/agent_integrations.rs"
[[test]]
name = "announcements"
path = "tests/announcements.rs"
[[test]]
name = "auth"
path = "tests/auth.rs"
[[test]]
name = "channels"
path = "tests/channels.rs"
[[test]]
name = "coupons"
path = "tests/coupons.rs"
[[test]]
name = "feedback"
path = "tests/feedback.rs"
[[test]]
name = "health"
path = "tests/health.rs"
[[test]]
name = "http_core"
path = "tests/http_core.rs"
[[test]]
name = "inference"
path = "tests/inference.rs"
[[test]]
name = "invite"
path = "tests/invite.rs"
[[test]]
name = "mascots"
path = "tests/mascots.rs"
[[test]]
name = "openapi_sync"
path = "tests/openapi_sync.rs"
[[test]]
name = "orchestration"
path = "tests/orchestration.rs"
[[test]]
name = "payments"
path = "tests/payments.rs"
[[test]]
name = "redirect"
path = "tests/redirect.rs"
[[test]]
name = "referral"
path = "tests/referral.rs"
[[test]]
name = "request_types"
path = "tests/request_types.rs"
[[test]]
name = "rewards"
path = "tests/rewards.rs"
[[test]]
name = "teams"
path = "tests/teams.rs"
[dependencies.percent-encoding]
version = "2"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"multipart",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.url]
version = "2"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"rt-multi-thread",
]
[dev-dependencies.wiremock]
version = "0.6"