-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
47 lines (41 loc) · 1.15 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
43
44
45
46
47
[package]
name = "scaproust"
version = "0.3.2"
authors = ["blabaere <[email protected]>"]
description = "Nanomsg scalability protocols implementation in rust. Various messaging patterns over pluggable transports"
readme = "README.md"
keywords = ["nanomsg", "messaging", "protocol", "network", "networking"]
categories = ["network-programming"]
license = "MIT/Apache-2.0"
documentation = "https://blabaere.github.io/scaproust"
homepage = "https://github.com/blabaere/scaproust"
repository = "https://github.com/blabaere/scaproust"
exclude = [
".gitignore",
".travis.yml",
"appveyor.yml",
"test/**/*",
]
[badges]
travis-ci = { repository = "blabaere/scaproust" }
appveyor = { repository = "blabaere/scaproust" }
[dependencies]
log = "0.3.9"
byteorder = "1.2.1"
time = "0.1.39"
mio = "0.6.12"
mio-uds = "0.6.4"
mio-extras = "2.0.3"
iovec = "0.1.1"
[target.'cfg(windows)'.dependencies]
miow = "0.3.1"
mio-named-pipes = "0.1.6"
winapi = "0.3.3"
[dev-dependencies]
env_logger = "0.4.3"
rand = "0.3.20"
[[test]]
name = "test"
path = "test/test.rs"
#[profile.release]
#debug = true