-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
32 lines (29 loc) · 896 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
[package]
name = "faythe"
version = "0.1.0"
edition = "2018"
[dependencies]
clap = { version = "=4.4", features = ["cargo"] } # We force 4.4 so we don't have to use rustc 1.74
serde = "1"
serde_derive = "1"
serde_json = "1"
openssl = "0.10"
base64 = "0.22"
acme-lib = { git = 'https://github.com/DBCDK/acme-lib', branch = 'dbc-fork' }
regex = "1"
lazy_static = "1"
walkdir = "2"
trust-dns-resolver = { version = "0", features = ["tokio-runtime"] }
env_logger = "0.11"
prometheus_exporter_base = { version = "=1.4.0", features = ["hyper_server"] }
tokio = { version = "1", features = [ "full" ] }
async-trait = { version = "0.1" }
dbc-rust-modules = { git = "https://github.com/dbcdk/rust-modules", branch = "main" }
vaultrs = "0.7"
vaultrs-login = "0.2"
url = "2"
chrono = "0.4"
num-traits = "0.2"
reqwest = { version = "0", features = ["blocking", "json"] }
[profile.release]
panic = "abort"