[package]
edition = "2021"
rust-version = "1.70"
name = "waapi-rs"
version = "0.2.1"
authors = ["xmimu <1101588023@qq.com>"]
build = false
exclude = [
"docs/TODO.md",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust client for Wwise Authoring API (WAAPI), supporting async and sync usage"
homepage = "https://github.com/xmimu/waapi-rs"
documentation = "https://docs.rs/waapi-rs"
readme = "README.md"
keywords = [
"wwise",
"waapi",
"audio",
"wamp",
"gamedev",
]
categories = [
"api-bindings",
"multimedia::audio",
"game-development",
]
license = "MIT"
repository = "https://github.com/xmimu/waapi-rs"
[lib]
name = "waapi_rs"
path = "src/lib.rs"
[[example]]
name = "get_func"
path = "examples/get_func.rs"
[[example]]
name = "get_info"
path = "examples/get_info.rs"
[[example]]
name = "monitor"
path = "examples/monitor.rs"
[[example]]
name = "subscribe"
path = "examples/subscribe.rs"
[[example]]
name = "waql"
path = "examples/waql.rs"
[[test]]
name = "basic_call"
path = "tests/basic_call.rs"
[[test]]
name = "subscribe"
path = "tests/subscribe.rs"
[[test]]
name = "sync_call"
path = "tests/sync_call.rs"
[[test]]
name = "sync_subscribe"
path = "tests/sync_subscribe.rs"
[dependencies.futures-util]
version = "0.3"
[dependencies.log]
version = "0.4.29"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.50.0"
features = ["full"]
[dependencies.tokio-tungstenite]
version = "0.26"
[dev-dependencies.env_logger]
version = "0.11.9"