forked from alexkamp/rust-zmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
64 lines (50 loc) · 1.25 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "zmq"
version = "0.7.0"
authors = [ "[email protected]" ]
license = "MIT/Apache-2.0"
description = "High-level bindings to the zeromq library"
repository = "https://github.com/erickt/rust-zmq"
[[example]]
name = "msgsend"
path = "examples/msgsend/main.rs"
[[example]]
name = "helloworld_client"
path = "examples/zguide/helloworld_client/main.rs"
[[example]]
name = "helloworld_server"
path = "examples/zguide/helloworld_server/main.rs"
[[example]]
name = "version"
path = "examples/zguide/version/main.rs"
[[example]]
name = "weather_client"
path = "examples/zguide/weather_client/main.rs"
[[example]]
name = "weather_server"
path = "examples/zguide/weather_server/main.rs"
[[example]]
name = "taskvent"
path = "examples/zguide/taskvent/main.rs"
[[example]]
name = "taskwork"
path = "examples/zguide/taskwork/main.rs"
[[example]]
name = "tasksink"
path = "examples/zguide/tasksink/main.rs"
[[example]]
name = "msreader"
path = "examples/zguide/msreader/main.rs"
[[example]]
name = "arcex"
path = "examples/arcex/main.rs"
[features]
unstable = ["compiletest_rs"]
[dependencies]
libc = "*"
log = "*"
zmq-sys = { version = "*", path = "zmq-sys" }
compiletest_rs = { version = "*", optional = true }
[dev-dependencies]
rand = "*"
time = "*"