-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (25 loc) · 926 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
[package]
name = "cycle-certs"
version = "1.0.0"
edition = "2021"
license = "MIT"
authors = ["Petrichor, Inc."]
description = "A bot for fetching and keeping TLS certificates generated via Cycle's DNS service up to date."
homepage = "https://cycle.io/"
repository = "https://github.com/cycleplatform/cycle-certs/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.68"
chrono = { version = "0.4.23", features = ["serde"] }
clap = { version = "4.0.32", features = ["derive"] }
config = { version = "0.13.3", features = ["toml"] }
directories = "4.0.1"
env_logger = "0.10.0"
log = "0.4.17"
reqwest = { version = "0.11.13", default-features = false, features = ["blocking", "json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.91"
shell-words = "1.1.0"
termcolor = "1.1.3"
[dev-dependencies]
tempfile = "3.3.0"