30 lines
1021 B
TOML
30 lines
1021 B
TOML
[package]
|
|
name = "instant-acme"
|
|
version = "0.1.3"
|
|
edition = "2021"
|
|
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"]
|
|
rust-version = "1.60.0"
|
|
|
|
[dependencies]
|
|
base64 = "0.21.0"
|
|
hyper = { version = "0.14.18", features = ["client", "http1", "http2"] }
|
|
hyper-rustls = { version = "0.23.0", default-features = false, features = ["http1", "http2", "native-tokio", "tls12"] }
|
|
ring = { version = "0.16.20", features = ["std"] }
|
|
serde = { version = "1.0.104", features = ["derive"] }
|
|
serde_json = "1.0.78"
|
|
thiserror = "1.0.30"
|
|
|
|
[dev-dependencies]
|
|
anyhow = "1.0.66"
|
|
clap = { version = "4.0.29", features = ["derive"] }
|
|
rcgen = "0.10.0"
|
|
tokio = { version = "1.22.0", features = ["rt", "macros", "rt-multi-thread"] }
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = "0.3.16"
|