generated from tversteeg/library-github-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
43 lines (36 loc) · 948 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 = "usfx"
version = "0.1.5"
authors = ["Thomas Versteeg <thomasversteeg@gmx.com>"]
license = "AGPL-3.0-or-later"
edition = "2018"
readme = "README.md"
repository = "https://github.com/tversteeg/usfx"
documentation = "https://docs.rs/usfx"
description = "Realtime procedurally generated sound effects"
keywords = ["sfx", "audio", "gamedev", "sound", "procedural"]
categories = ["game-development", "multimedia", "multimedia::audio", "simulation"]
[features]
default = []
serde = ["dep:serde"]
[dependencies]
randomize = "3.0.1"
serde = { version = "1.0.200", features = ["derive"], optional = true }
[dev-dependencies]
cpal = "0.15.3"
criterion = "0.5.1"
sdl2 = { version = "0.37.0", features = ["bundled"] }
rust-music-theory = "0.2.0"
rand = "0.8.5"
[[bench]]
name = "wave_type"
harness = false
[[bench]]
name = "envelope"
harness = false
[[bench]]
name = "mixer"
harness = false
[[bench]]
name = "distortion"
harness = false