forked from jedisct1/edgedns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (45 loc) · 1.07 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
[package]
name = "edgedns"
version = "0.1.0"
authors = ["Frank Denis <[email protected]>"]
[features]
webservice = ["civet", "conduit", "conduit-middleware", "conduit-router"]
[dependencies]
env_logger = "*"
log = "*"
rand = "*"
rustc-serialize = "*"
slab = "~0.3.0"
siphasher = "*"
clippy = {version = "*", optional = true}
[dependencies.civet]
version = "*"
optional = true
[dependencies.conduit]
version = "*"
optional = true
[dependencies.conduit-middleware]
version = "*"
optional = true
[dependencies.conduit-router]
version = "*"
optional = true
[dependencies.clockpro-cache]
git = "https://github.com/jedisct1/rust-clockpro-cache.git"
[dependencies.bytes]
git = "https://github.com/carllerche/bytes"
rev = "d05bfb6346e3eb5eebc9f6016c32fede20ba3831"
[dependencies.clap]
git = "https://github.com/kbknapp/clap-rs.git"
[dependencies.mio]
git = "https://github.com/carllerche/mio"
[dependencies.nix]
git = "https://github.com/carllerche/nix-rust.git"
[profile.dev]
codegen-units = 4
panic = "unwind"
[profile.release]
debug = true
lto = true
panic = "abort"
opt-level = 3