-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
43 lines (34 loc) · 856 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
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "timbre"
version = "0.4.0"
authors = ["Thoren Paulson <[email protected]>"]
categories = ["multimedia::audio", "game-development"]
description = "A library for audio processing with composable effects."
documentation = "https://docs.rs/timbre"
edition = "2018"
keywords = ["audio", "gamedev"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/thoren-d/timbre"
exclude = ["/assets"]
[dependencies]
sdl2 = "0.34.0"
slotmap = "0.4.0"
tracing = "0.1.19"
[dependencies.sdl2-sys]
version = "=0.34.2"
[dev-dependencies]
criterion = "0.3.3"
tracing-chrome = "0.2.0"
tracing-subscriber = "0.2.11"
[features]
default = ["sdl2/bundled", "sdl2/static-link"]
[package.metadata.docs.rs]
features = []
no-default-features = true
[[bench]]
name = "generators"
harness = false
[[bench]]
name = "effects"
harness = false