forked from randomairborne/hyperacme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 941 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
[package]
name = "hyperacme"
description = "Async library for requesting certificates from an ACME provider (acme-micro fork)."
license = "MIT"
repository = "https://github.com/randomairborne/hyperacme"
readme = "README.md"
version = "0.0.3"
authors = [
"Martin Algesten <[email protected]>",
"kpcyrd <[email protected]>",
"valkyrie_pilot <[email protected]>"
]
keywords = ["letsencrypt", "acme", "async"]
categories = ["web-programming", "api-bindings"]
edition = "2021"
[dependencies]
base64 = "0.13"
lazy_static = "1.4"
tracing = "0.1"
tokio = { version = "1", features = ["test-util", "macros", "time", "rt-multi-thread"]}
openssl = "0.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = "0.4"
reqwest = { version = "0.11", features = ["json"] }
[dev-dependencies]
doc-comment = "0.3"
env_logger = { version = "0.8", default-features = false }
futures = "0.1.31"
hyper = "0.12"
regex = "1.7"