[package]
name = "audacity-sdk"
version = "0.2.0"
edition = "2021"
rust-version = "1.75"
license-file = "LICENSE"
description = "Rust SDK for the Audacity Investments AI gateway — Amazon Bedrock Converse-compatible API surface"
readme = "README.md"
repository = "https://github.com/Audacity-Investments/audacity-sdk"
homepage = "https://portal.audacityinvestments.com"
keywords = ["audacity", "llm", "bedrock", "ai", "sdk"]
categories = ["api-bindings", "asynchronous"]
[lib]
name = "audacity_sdk"
path = "src/lib.rs"
[dependencies]
base64 = "0.22"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json", "stream"] }
tokio = { version = "1", features = ["rt", "time"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
futures-util = "0.3"
bytes = "1"
rand = "0.8"
[dev-dependencies]
tokio = { version = "1", features = ["rt", "macros", "time", "rt-multi-thread", "net", "io-util", "sync"] }
tokio-util = { version = "0.7", features = ["codec", "io"] }