summaryrefslogtreecommitdiffstats
path: root/third_party/rust/audioipc/Cargo.toml
blob: 8a9dd3d4847e36b4257fa914c18feb6b510c302e (plain)
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
44
45
46
47
48
49
[package]
name = "audioipc"
version = "0.2.5"
authors = [
        "Matthew Gregan <kinetik@flim.org>",
        "Dan Glastonbury <dan.glastonbury@gmail.com>"
        ]
license = "ISC"
description = "Remote Cubeb IPC"
edition = "2018"

[dependencies]
bincode = "1.3"
bytes = "0.4"
cubeb = "0.10"
futures = "0.1.29"
log = "0.4"
serde = "1"
serde_derive = "1"
tokio = { version="0.1", default-features=false, features = ["rt-full"] }
tokio-io = "0.1"

[target.'cfg(unix)'.dependencies]
iovec = "0.1"
libc = "0.2"
mio = "0.6.19"
mio-uds = "0.6.7"
tokio-reactor = "0.1"
memmap2 = "0.2"

[target.'cfg(target_os = "linux")'.dependencies.audio_thread_priority]
version = "0.26.1"
default-features = false

[target.'cfg(windows)'.dependencies]
mio = "0.6.19"
miow = "0.3.3"
mio-named-pipes = { git = "https://github.com/kinetiknz/mio-named-pipes", rev = "21c26326f5f45f415c49eac4ba5bc41a2f961321" }
winapi = { version = "0.3.6", features = ["combaseapi", "memoryapi", "objbase"] }

[target.'cfg(target_os = "android")'.dependencies]
ashmem = "0.1"

[dependencies.error-chain]
version = "0.12.0"
default-features = false

[build-dependencies]
cc = "1.0"