forked from algesten/acme-lib
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
37 lines (34 loc) · 865 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
[package]
name = "acme-micro"
description = "Library for requesting certificates from an ACME provider (acme-lib fork)."
license = "MIT"
repository = "https://github.com/kpcyrd/acme-micro"
readme = "README.md"
version = "0.13.0"
authors = [
"Martin Algesten <martin@algesten.se>",
"kpcyrd <git@rxv.cc>",
]
keywords = ["letsencrypt", "acme"]
categories = ["web-programming", "api-bindings"]
edition = "2021"
[features]
vendored = ["openssl/vendored"]
[dependencies]
anyhow = "1.0"
base64 = "0.22"
lazy_static = "1"
log = "0.4"
openssl = "0.10"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
time = { version = "0.3", features = ["local-offset"] }
time-fmt = "0.3"
time-tz = "1"
ureq = "2"
[dev-dependencies]
doc-comment = "0.3"
env_logger = { version = "0.11", default-features = false }
futures = "0.1.25"
hyper = "0.12"
regex = "1.4"