forked from cloudflare/cfnts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (43 loc) · 1.26 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
[package]
name = "cfnts"
version = "2019.6.0"
authors = [
"Watson Ladd <[email protected]>",
"Gabbi Fisher <[email protected]>",
"Tanya Verma <[email protected]>",
"Suphanat Chunhapanya <[email protected]>",
]
edition = "2018"
[dependencies]
byteorder = "1.3.2"
# Used for command-line parsing and validation.
clap = "2.33.0"
config = "0.9.3"
crossbeam = "0.7.3"
lazy_static = "1.4.0"
libc = "0.2.65"
log = "0.4.8"
memcache = "0.13.1"
mio = "0.6.19"
miscreant = "0.4.2"
socket2 = "0.4.7"
nix = "0.13.0"
prometheus = "0.7.0"
rand = "0.7.2"
ring = "0.16.9"
rustls = "0.16.0"
simple_logger = "1.3.0"
# More advanced logging system than `log`.
slog = { version = "2.5.2", features = [
"max_level_trace",
"release_max_level_debug",
]} # We configure at runtime
# Add scopes to the logging system.
slog-scope = "4.3.0"
# Used for fowarding all the `log` crate logging to `slog_scope::logger()`.
slog-stdlog = "~4.0.0"
# A wrapper of `slog` to make logging more convenient. If you want to increase a version here,
# please make sure that `TerminalLoggerBuilder::build` doesn't return an error.
sloggers = "=0.3.4"
webpki = "0.21.0"
webpki-roots = "0.18.0"