forked from amethyst/amethyst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (34 loc) · 1.18 KB
/
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
32
33
34
35
36
37
38
39
[package]
name = "amethyst_audio"
version = "0.16.0"
authors = [
"Xaeroxe <[email protected]>",
"Amethyst Foundation <[email protected]>",
]
edition = "2018"
description = "Audio support for Amethyst"
exclude = ["examples/*"]
keywords = ["game", "engine", "audio", "amethyst"]
categories = ["multimedia::audio"]
documentation = "https://docs.amethyst.rs/stable/amethyst_audio/"
homepage = "https://amethyst.rs/"
repository = "https://github.com/amethyst/amethyst"
readme = "README.md"
license = "MIT OR Apache-2.0"
[dependencies]
amethyst_assets = { path = "../amethyst_assets", version = "0.16.0" }
amethyst_core = { path = "../amethyst_core", version = "0.16.0" }
amethyst_error = { path = "../amethyst_error", version = "0.16.0" }
cpal = "0.11"
derive-new = "0.5"
log = "0.4"
rodio = "0.11"
serde = { version = "1", features = ["derive"] }
smallvec = { version = "1.6", features = ["serde"] }
thread_profiler = { version = "0.3", optional = true }
type-uuid = "0.1"
[dev-dependencies]
amethyst = { path = "../", version = "0.16.0", features = ["renderer"] }
amethyst_utils = { path = "../amethyst_utils", version = "0.16.0" }
[features]
profiler = ["thread_profiler/thread_profiler"]