-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
44 lines (37 loc) · 906 Bytes
/
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
[package]
name = "configure"
version = "0.6.5"
authors = ["Jeremy Massel <[email protected]>"]
edition = "2018"
[lib]
name = "configure"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib", "staticlib"]
[[bin]]
name = "configure"
path = "src/bin.rs"
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
[dependencies]
log = "0.4.0"
libc = "0.2"
dirs = "3.0.1"
simplelog = "^0.7.6"
sodiumoxide = "0.2.6"
structopt = { version = "0.3", default-features = false }
structopt-flags = "0.3"
git2 = "0.13"
console = "0.13.0"
dialoguer = "0.7.1"
indicatif = "0.15.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = {version = "1.0", features = ["preserve_order"]}
rand = "0.8.3"
thiserror = "1.0"
ring = "0.16.18"
base64 = "0.13.0"
chrono = "0.4"
# Avoid cross-platform SSL issues by inluding openssl in our binary
openssl = { version = "0.10", features = ["vendored"] }