-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
65 lines (56 loc) · 1.73 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
59
60
61
62
63
64
65
[package]
name = "roughenough"
version = "1.3.0-draft11"
repository = "https://github.com/int08h/roughenough"
authors = ["Stuart Stock <[email protected]>", "Aaron Hill <[email protected]>"]
license = "Apache-2.0"
description = "A Roughtime secure time sync server and client written in Rust"
readme = "README.md"
keywords = ["roughtime", "cryptography", "crypto"]
edition = "2021"
[badges]
travis-ci = { repository = "int08h/roughenough", branch = "master" }
[features]
default = []
awskms = ["rusoto_core", "rusoto_kms", "bytes", "futures"]
gcpkms = ["google-cloudkms1", "hyper", "hyper-rustls", "serde", "serde_json", "yup-oauth2", "futures", "tokio"]
[dependencies]
byteorder = "1"
chrono = "0.4"
clap = "2"
ctrlc = { version = "3.4", features = ["termination"] }
humansize = "2"
log = "0.4"
mio = "0.6"
mio-extras = "2.0"
net2 = "0.2"
once_cell = "1.19"
rand = "0.6"
ring = "0.17"
simple_logger = "5"
yaml-rust = "0.4"
zeroize = "1.8"
data-encoding = "2.6"
enum-iterator = "2.1"
ed25519-dalek = "2.1"
# Used by 'awskms' and 'gcpkms'
futures = { version = "^0.3", optional = true }
# Used by 'awskms'
rusoto_core = { version = "0.47", optional = true }
rusoto_kms = { version = "0.47", optional = true }
bytes = { version = "^1.0", optional = true }
# Used by 'gcpkms'
google-cloudkms1 = { version = "2.0.8", optional = true }
hyper = { version = "^0.14", optional = true }
hyper-rustls = { version = "^0.22", optional = true }
serde = { version = "^1.0", optional = true }
serde_json = { version = "^1.0", optional = true }
yup-oauth2 = { version = "^5.0", optional = true }
tokio = { version = "1", features = ["full"], optional = true }
[dev-dependencies]
criterion = "0.5"
[profile.release]
lto = "fat"
[[bench]]
name = "roughenough-bench"
harness = false