forked from orottier/web-audio-api-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (34 loc) · 884 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
[package]
name = "web-audio-api"
version = "0.10.0"
authors = ["Otto <otto@ot-to.nl>"]
edition = "2018"
description = "A pure Rust implementation of the Web Audio API, for use in non-browser contexts"
readme = "README.md"
repository = "https://github.com/orottier/web-audio-api-rs"
keywords = ["web-audio-api", "audio", "sound"]
license = "MIT"
categories = ["multimedia::audio"]
[dependencies]
cpal = "0.13.1"
lewton = "0.10.2"
vecmath = "1.0.0"
arrayvec = "0.7.1"
hound = "3.4.0"
log = "0.4.14"
realfft = "2.0.1"
crossbeam-channel = "0.5.1"
num-complex = "0.4"
lazy_static = "1.4.0"
rubato = "0.10"
float_eq = "0.7"
[dev-dependencies]
rand = "0.8.*"
alloc_counter = "0.0.4"
env_logger = "0.9.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Uncomment the following lines to enable debug symbols
# during CPU profiling
# [profile.release]
# debug = true