-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
56 lines (50 loc) · 1.19 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
[package]
edition = "2021"
name = "agnos"
version = "0.1.0"
authors = ["Arthur Carcano"]
description = """Obtain (wildcard) certificates from let's encrypt \
using dns-01 without the need for API access to your DNS provider."""
default-run = "agnos"
readme = "README.md"
repository = "https://github.com/krtab/agnos"
license = "MIT"
include = [
"Cargo.lock",
"Cargo.toml",
"LICENSE.txt",
"README.md",
"resources/Banner-optimized.png",
"resources/red-iron.png",
"src",
"systemd",
]
categories = ["command-line-utilities"]
rust-version = "1.67"
[dependencies]
acme2 = "0.5"
base64 = "0.21.0"
futures-util = "0.3.31"
openssl = "0.10.70"
reqwest = "0.11.7"
sha2 = "0.10.6"
toml = { version = "0.7.2", default-features = false, features = ["parse"] }
tracing = "0.1.29"
tracing-error = "0.2.0"
hickory-server = "0.24.0"
hickory-proto = "0.24.0"
async-trait = "0.1.57"
anyhow = "1.0.69"
[dependencies.serde]
features = ["derive"]
version = "1.0.130"
[dependencies.tokio]
features = ["macros", "rt-multi-thread", "fs"]
version = "1.24.1"
[dependencies.tracing-subscriber]
version = "0.3.3"
features = ["env-filter"]
[dependencies.clap]
version = "4.0.2"
features = ["cargo"]
[features]