forked from erickt/rust-zmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (40 loc) · 1 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
[package]
name = "zmq"
version = "0.7.0"
authors = [ "erick.tryzelaar@gmail.com" ]
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"
[dependencies]
libc = "*"
log = "*"
rand = "*"
time = "*"
zmq-sys = { version = "*", path = "zmq-sys" }