[package]
edition = "2024"
rust-version = "1.86"
name = "tone3000"
version = "0.1.0"
build = false
exclude = [
".github/",
"scripts/",
"Makefile",
"CLAUDE.md",
"docs/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async Rust client for the TONE3000 API (v1)"
readme = "README.md"
keywords = [
"tone3000",
"nam",
"neural-amp-modeler",
"guitar",
"api",
]
categories = ["api-bindings"]
license = "MIT"
repository = "https://github.com/OpenSauce/tone3000-rs"
[lib]
name = "tone3000"
path = "src/lib.rs"
[[example]]
name = "oauth_desktop"
path = "examples/oauth_desktop.rs"
[[example]]
name = "play_with_nam_rs"
path = "examples/play_with_nam_rs.rs"
[[example]]
name = "search_and_download"
path = "examples/search_and_download.rs"
[[test]]
name = "live_oauth"
path = "tests/live_oauth.rs"
[[test]]
name = "live_public"
path = "tests/live_public.rs"
[[test]]
name = "live_user"
path = "tests/live_user.rs"
[[test]]
name = "oauth"
path = "tests/oauth.rs"
[[test]]
name = "read_path"
path = "tests/read_path.rs"
[dependencies.base64]
version = "0.23"
[dependencies.bytes]
version = "1"
[dependencies.futures-util]
version = "0.3"
[dependencies.getrandom]
version = "0.4"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"stream",
"rustls",
"form",
"query",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"sync",
"io-util",
]
default-features = false
[dependencies.url]
version = "2"
[dev-dependencies.nam-rs]
version = "0.4"
[dev-dependencies.reqwest]
version = "0.13"
features = [
"json",
"rustls",
]
default-features = false
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"io-util",
]
[dev-dependencies.wiremock]
version = "0.6"