instant-acme/Cargo.toml

37 lines
1.1 KiB
TOML
Raw Normal View History

[package]
2022-05-12 20:29:35 +00:00
name = "instant-acme"
2023-08-01 08:18:03 +00:00
version = "0.4.0"
2022-12-14 20:04:09 +00:00
edition = "2021"
2023-08-11 07:14:47 +00:00
rust-version = "1.63"
2022-05-12 08:16:28 +00:00
license = "Apache-2.0"
description = "Async pure-Rust ACME client"
2023-05-31 07:59:54 +00:00
homepage = "https://github.com/instant-labs/instant-acme"
repository = "https://github.com/instant-labs/instant-acme"
2022-05-12 08:16:28 +00:00
documentation = "https://docs.rs/instant-acme"
keywords = ["letsencrypt", "acme"]
categories = ["web-programming", "api-bindings"]
2023-05-30 08:47:10 +00:00
[features]
default = ["hyper-rustls"]
[dependencies]
2023-01-09 09:58:14 +00:00
base64 = "0.21.0"
2022-05-10 12:56:42 +00:00
hyper = { version = "0.14.18", features = ["client", "http1", "http2"] }
2023-05-30 08:47:10 +00:00
hyper-rustls = { version = "0.24", default-features = false, features = ["http1", "http2", "native-tokio", "tls12"], optional = true }
ring = { version = "0.16.20", features = ["std"] }
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0.78"
thiserror = "1.0.30"
2022-11-30 00:17:58 +00:00
[dev-dependencies]
anyhow = "1.0.66"
clap = { version = "4.0.29", features = ["derive"] }
2023-07-26 08:28:38 +00:00
rcgen = "0.11"
2023-05-30 08:47:10 +00:00
tokio = { version = "1.22.0", features = ["macros", "rt", "rt-multi-thread", "time"] }
2022-11-30 00:17:58 +00:00
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
2023-05-30 08:47:10 +00:00
[[example]]
name = "provision"
required-features = ["hyper-rustls"]