forked from maidsafe-archive/crust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
70 lines (62 loc) · 1.39 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
65
66
67
68
69
70
[package]
authors = ["MaidSafe Developers <dev@maidsafe.net>"]
description = "Peer-to-peer networking library. Automatically reconnect and manage connections."
documentation = "http://maidsafe.net/crust/latest"
homepage = "http://maidsafe.net"
license = "GPL-3.0"
name = "crust"
readme = "README.md"
repository = "https://github.com/maidsafe/crust"
version = "0.8.1"
[dependencies]
cbor = "~0.3.16"
config_file_handler = "0.0.1"
crossbeam = "~0.1.6"
get_if_addrs = "~0.3.0"
ip = "~1.1.0"
itertools = "0.4.7"
libc = "~0.2.6"
log = "~0.3.4"
maidsafe_utilities = "~0.1.5"
memmap = "~0.2.2"
nat_traversal = "~0.0.3"
net2 = "~0.2.20"
rand = "~0.3.12"
rustc-serialize = "~0.3.16"
secure_serialisation = "~0.1.0"
service_discovery = "0.2.1"
socket_addr = "~0.0.1"
sodiumoxide = "~0.0.9"
temp_utp = "~0.7.0"
term = "~0.2.14"
time = "~0.1.34"
[dependencies.clippy]
optional = true
version = "~0.0.37"
[dev-dependencies]
docopt = "~0.6.78"
env_logger = "~0.3.2"
[[example]]
bench = false
name = "simple_sender"
path = "examples/simple_sender.rs"
test = false
[[example]]
bench = false
name = "simple_receiver"
path = "examples/simple_receiver.rs"
test = false
[[example]]
bench = false
name = "crust_peer"
path = "examples/crust_peer.rs"
[[example]]
bench = false
name = "reporter"
path = "examples/reporter.rs"
test = false
[[example]]
bench = false
name = "simple_benchmark"
path = "examples/simple_benchmark.rs"
test = false