forked from zeozeozeo/kittyaudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (26 loc) · 989 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "kittyaudio"
description = "An audio playback library focusing on simplicity"
license = "MIT OR BSL-1.0"
version = "0.1.8"
exclude = ["assets/**"]
documentation = "https://docs.rs/kittyaudio"
homepage = "https://github.com/zeozeozeo/kittyaudio"
repository = "https://github.com/zeozeozeo/kittyaudio"
keywords = ["audio", "playback", "gamedev"]
categories = ["multimedia"]
edition = "2021"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cpal = { version = "0.15.2", optional = true }
parking_lot = "0.12.1"
serde = { version = "1.0.193", features = ["derive"], optional = true }
symphonia = { version = "0.5.3", features = ["all"], optional = true }
thiserror = "1.0.52"
[features]
default = ["symphonia", "cpal"]
## Audio decoding support
symphonia = ["dep:symphonia"]
## Audio playback support, disable if you want to use kittyaudio purely as an audio library
cpal = ["dep:cpal"]