-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCargo.toml
42 lines (36 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
40
41
42
[package]
name = "webrtc-audio-processing"
version = "0.4.0"
authors = ["Ryo Kawaguchi <[email protected]>"]
repository = "https://github.com/tonarino/webrtc-audio-processing"
edition = "2018"
description = "A wrapper for WebRTC's AudioProcessing module."
documentation = "https://docs.rs/webrtc-audio-processing"
keywords = ["ffi"]
categories = ["multimedia::audio"]
license-file = "COPYING"
[badges]
travis-ci = { repository = "tonarino/webrtc-audio-processing", branch = "master" }
maintenance = { status = "actively-developed" }
[features]
derive_serde = ["webrtc-audio-processing-sys/derive_serde", "serde"]
bundled = ["webrtc-audio-processing-sys/bundled"]
[dependencies]
serde = { version = "1", features = ["derive"], optional = true }
webrtc-audio-processing-sys = { path = "webrtc-audio-processing-sys", version = "0.4.0" }
[[example]]
name = "recording"
required-features = ["derive_serde"]
[dev-dependencies]
crossbeam-channel = "0.5"
ctrlc = { version = "3", features = ["termination"] }
failure = "0.1"
hound = "3.4"
json5 = "0.3"
portaudio = "0.7"
regex = "1"
serde = { version = "1", features = ["derive"]}
structopt = "0.3"
log = "0.4"
[package.metadata.docs.rs]
features = [ "bundled" ]