2022-01-25 14:06:38 +00:00
|
|
|
[package]
|
2022-05-12 20:29:35 +00:00
|
|
|
name = "instant-acme"
|
2022-01-25 14:06:38 +00:00
|
|
|
version = "0.1.0"
|
2022-05-12 08:21:12 +00:00
|
|
|
edition = "2018"
|
2022-05-12 08:16:28 +00:00
|
|
|
license = "Apache-2.0"
|
|
|
|
description = "Async pure-Rust ACME client"
|
|
|
|
homepage = "https://github.com/InstantDomain/instant-acme"
|
|
|
|
repository = "https://github.com/InstantDomain/instant-acme"
|
|
|
|
documentation = "https://docs.rs/instant-acme"
|
|
|
|
keywords = ["letsencrypt", "acme"]
|
|
|
|
categories = ["web-programming", "api-bindings"]
|
2022-01-25 14:06:38 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
base64 = "0.13.0"
|
2022-05-10 12:56:42 +00:00
|
|
|
hyper = { version = "0.14.18", features = ["client", "http1", "http2"] }
|
|
|
|
hyper-rustls = { version = "0.23.0", default-features = false, features = ["http1", "http2", "native-tokio", "tls12"] }
|
2022-01-25 14:06:38 +00:00
|
|
|
ring = { version = "0.16.20", features = ["std"] }
|
|
|
|
serde = { version = "1.0.104", features = ["derive"] }
|
|
|
|
serde_json = "1.0.78"
|
|
|
|
thiserror = "1.0.30"
|