forked from vmware-archive/haret
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (49 loc) · 1.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
51
52
53
54
55
56
[package]
name = "haret"
version = "0.1.0"
authors = ["Andrew J. Stone <[email protected]>"]
description = "A strongly consistent distributed coordination service"
repository = "https://github.com/vmware/haret"
keywords = ["distributed", "coordination", "strong consistency"]
license = "Apache-2.0"
[features]
no_timerfd = ["rabble/no_timerfd", "amy/no_timerfd"]
[dependencies]
libc = "0.1"
time = "*"
uuid = { version = "0.5", features = ["serde", "v4"] }
rand = "0.3"
slog = {version = "1", features = ["max_level_trace"]}
slog-stdlog = "1"
slog-term = "1.1"
slog-envlogger = "0.5"
amy = "^0.7.2"
funfsm = "0.2"
orset = "0.2"
rabble = "0.4"
protobuf = "1.0.24"
vertree = "0.1"
lazy_static = "0.1"
serde = "1.0"
serde_derive = "1.0"
rmp-serde = "0.13"
toml = "0.4"
[dev-dependencies]
assert_matches = "1.0"
quickcheck = "0.4"
[[bin]]
name = "haret"
path = "src/bin/haret.rs"
test = false
[[bin]]
name = "haret-admin"
path = "src/bin/haret-admin.rs"
test = false
[[bin]]
name = "haret-cli-client"
path = "src/bin/haret-cli-client.rs"
test = false
[[bin]]
name = "devconfig"
path = "src/bin/devconfig.rs"
test = false