-
Notifications
You must be signed in to change notification settings - Fork 248
Expand file tree
/
Copy pathCargo.toml
More file actions
115 lines (98 loc) · 2.09 KB
/
Cargo.toml
File metadata and controls
115 lines (98 loc) · 2.09 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[package]
name = "noria-applications"
version = "0.6.0"
authors = ["The Noria developers <noria@pdos.csail.mit.edu>"]
edition = '2018'
publish = false
[dependencies]
chrono = { version = "0.4.0", features = ["serde"] }
clap = "2.25.0"
failure = "0.1"
flurry = "0.3"
futures-core = "0.3.0"
futures-util = "0.3.0"
hdrhistogram = "7"
itertools = "0.9"
memcached-rs = "0.4.2"
mysql_async = "0.23.0"
nom-sql = "0.0.11"
noria = { path = "../server", package = "noria-server" }
num_cpus = "1"
rand = "0.7"
rand_distr = "0.2"
redis = { version = "0.16", features = ["tokio-rt-core"] }
regex = "1.0.0"
slog = "2.4.0"
#slog = { version = "2.4.0", features = ["max_level_trace", "release_max_level_debug"] }
slog-term = "2.4.0"
tokio = { version = "0.2.0", features = ["full"] }
tokio-test = "0.2.0"
tower-service = "0.3.0"
tower-limit = "0.3.1"
# need 0.3.1 for https://github.com/tower-rs/tower/pull/427
tower-util = "0.3.1"
trawler = "0.11.0-alpha.4"
vec_map = { version = "0.8.0" }
zipf = "6"
zookeeper = "0.5.3"
# mssql
# disabled due to lack of async/await support
# futures-state-stream = "0.1"
# tiberius = "0.3.1"
[lib]
path = "lib.rs"
[[bin]]
name = "vote"
path = "vote/main.rs"
doc = false
[[bin]]
name = "tpc_w"
path = "tpc_w/tpc_w.rs"
doc = false
[[bin]]
name = "hotsoup"
path = "hotsoup/hotsoup.rs"
doc = false
[[bin]]
name = "extract_hotcrp_queries"
path = "hotsoup/extract_queries.rs"
doc = false
[[bin]]
name = "securecrp"
path = "securecrp/main.rs"
doc = false
[[bin]]
name = "piazza"
path = "piazza/piazza.rs"
doc = false
[[bin]]
name = "evict-o-rama"
path = "evict-o-rama/main.rs"
doc = false
[[bin]]
name = "vote-migration"
path = "vote-migration/main.rs"
doc = false
[[bin]]
name = "vote-dbtoaster-style"
path = "vote-dbtoaster-style/main.rs"
doc = false
[[bin]]
name = "vote-purge-stress"
path = "vote-purge-stress/main.rs"
doc = false
[[bin]]
name = "replay"
path = "replay/main.rs"
doc = false
[[bin]]
name = "lobsters-mysql"
path = "lobsters/mysql/main.rs"
doc = false
[[bin]]
name = "lobsters-noria"
path = "lobsters/noria/main.rs"
doc = false
#[[bin]]
#name = "security-mysql"
#path = "piazza/mysql.rs"