forked from maidsafe-archive/safe_dns
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (27 loc) · 832 Bytes
/
Cargo.toml
File metadata and controls
33 lines (27 loc) · 832 Bytes
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
[package]
name = "safe_dns"
version = "0.1.0"
authors = ["MaidSafe Developers <dev@maidsafe.net>"]
description = "SAFE DNS API library"
documentation = "http://maidsafe.net/safe_dns/latest"
repository = "https://github.com/maidsafe/safe_dns"
readme = "README.md"
license = "GPL-3.0"
homepage = "http://maidsafe.net"
[dependencies]
# ---- Maidsafe ----
routing = "0.3.*"
#safe_nfs = "0.1.*"
#safe_client = "0.1.*"
# ---- Others ----
sodiumoxide = "*"
rustc-serialize = "*"
[dev-dependencies]
regex = "*"
[dependencies.safe_nfs]
git = "https://github.com/maidsafe/safe_nfs"
[dependencies.safe_client]
git = "https://github.com/maidsafe/safe_client"
[features]
use-mock-routing = ["safe_client/use-mock-routing",
"safe_nfs/use-mock-routing"]