forked from benjaminbollen/maidsafe_client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (55 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
66 lines (55 loc) · 1.19 KB
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
[package]
authors = ["MaidSafe Developers <dev@maidsafe.net>"]
description = "SAFE Core API library"
documentation = "http://docs.maidsafe.net/safe_core/latest"
homepage = "http://maidsafe.net"
license = "GPL-3.0"
name = "safe_core"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_core"
version = "0.22.1"
[dependencies]
clippy = {version = "~0.0.91", optional = true}
config_file_handler = "~0.4.0"
lazy_static = "~0.2.1"
libc = "~0.2.16"
log = "~0.3.6"
lru-cache = "~0.0.7"
maidsafe_utilities = "~0.10.0"
rand = "~0.3.14"
routing = "~0.27.1"
rust_sodium = "~0.1.2"
rustc-serialize = "~0.3.19"
self_encryption = "~0.7.1"
time = "~0.1.35"
unwrap = "~1.1.0"
[dev-dependencies]
crossbeam = "~0.2.10"
docopt = "~0.6.85"
regex = "~0.1.77"
[[example]]
bench = false
name = "email_stress_test"
[[example]]
bench = false
name = "client_stress_test"
[[example]]
bench = false
name = "self_authentication"
[[example]]
bench = false
name = "safe_client"
[[example]]
bench = false
name = "nfs_api"
[[example]]
bench = false
name = "simulate_browser"
[[example]]
bench = false
name = "email"
[features]
use-mock-routing = []
[lib]
crate_type = ["staticlib", "rlib", "cdylib"]
name = "safe_core"