[package]
edition = "2021"
rust-version = "1.75"
name = "cider-api"
version = "0.1.1"
authors = ["Giorgio Brullo"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async Rust client for the Cider music player REST API"
homepage = "https://docs.rs/cider-api"
readme = "README.md"
keywords = [
"cider",
"apple-music",
"music",
"playback",
"async",
]
categories = [
"api-bindings",
"multimedia::audio",
"asynchronous",
]
license = "MPL-2.0"
repository = "https://github.com/giorgiobrullo/cider-api"
[lib]
name = "cider_api"
path = "src/lib.rs"
[[test]]
name = "mock_amapi"
path = "tests/mock_amapi.rs"
[[test]]
name = "mock_errors"
path = "tests/mock_errors.rs"
[[test]]
name = "mock_library"
path = "tests/mock_library.rs"
[[test]]
name = "mock_play_items"
path = "tests/mock_play_items.rs"
[[test]]
name = "mock_playback"
path = "tests/mock_playback.rs"
[[test]]
name = "mock_queue"
path = "tests/mock_queue.rs"
[[test]]
name = "mock_settings"
path = "tests/mock_settings.rs"
[[test]]
name = "mock_status"
path = "tests/mock_status.rs"
[[test]]
name = "mock_volume"
path = "tests/mock_volume.rs"
[[test]]
name = "real_instance"
path = "tests/real_instance.rs"
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.wiremock]
version = "0.6"