forked from servo/ipc-channel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (34 loc) · 1.11 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
[package]
name = "ipc-channel"
version = "0.16.0"
description = "A multiprocess drop-in replacement for Rust channels"
authors = ["The Servo Project Developers"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/servo/ipc-channel"
edition = "2018"
[features]
force-inprocess = []
memfd = ["sc"]
unstable = []
async = ["futures", "futures-test"]
win32-trace = []
windows-shared-memory-equality = []
[dependencies]
bincode = "1"
crossbeam-channel = "0.5"
fnv = "1.0.3"
futures = { version = "0.3", optional = true }
futures-test = { version = "0.3", optional = true }
lazy_static = "1"
libc = "0.2.12"
rand = "0.7"
serde = { version = "1.0", features = ["rc"] }
tempfile = "3"
uuid = { version = "1", features = ["v4"] }
[target.'cfg(any(target_os = "linux", target_os = "openbsd", target_os = "freebsd"))'.dependencies]
mio = "0.6.11"
sc = { version = "0.2.2", optional = true }
[dev-dependencies]
crossbeam-utils = "0.8"
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3.7", features = ["minwindef", "ioapiset", "memoryapi", "namedpipeapi", "handleapi", "fileapi", "impl-default", "synchapi"] }