# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "async-acme" version = "0.5.0" authors = ["User65k <15049544+User65k@users.noreply.github.com>"] description = "async ACME client for tls-alpn-01 challenge" readme = "README.md" keywords = [ "letsencrypt", "acme", "async", "alpn", "tls", ] license = "MIT" repository = "https://github.com/User65k/async-acme" [package.metadata.docs.rs] features = ["use_rustls"] rustdoc-args = [ "--cfg", "docsrs", ] [[example]] name = "hyper_rustls" path = "examples/hyper_rustls.rs" required-features = ["hyper_rustls"] [[example]] name = "async_rustls" path = "examples/async_rustls.rs" required-features = ["async_std_rustls"] [dependencies.async-std] version = "1.9.0" optional = true [dependencies.async-trait] version = "0.1" [dependencies.base64] version = "0.22" [dependencies.futures-util] version = "0.3" default-features = false [dependencies.generic-async-http-client] version = "0.5" [dependencies.log] version = "0.4" [dependencies.native-tls] version = "0.2" optional = true [dependencies.openssl] version = "0.10" optional = true [dependencies.rcgen] version = "0.12" optional = true default-features = false [dependencies.ring] version = "0.17" features = ["std"] optional = true [dependencies.rustls] version = "0.22" optional = true [dependencies.rustls-pemfile] version = "2.1" optional = true [dependencies.serde] version = "1.0" features = ["derive"] [dependencies.serde_json] version = "1.0" [dependencies.thiserror] version = "1.0" [dependencies.tokio] version = "1.6" optional = true [dependencies.x509-parser] version = "0.16" default-features = false [dev-dependencies.async-stream] version = "0.3.0" [dev-dependencies.futures-rustls] version = "0.25" [dev-dependencies.futures-util] version = "0.3.1" default-features = false [dev-dependencies.hyper] version = "1.2" features = ["full"] [dev-dependencies.hyper-util] version = "0.1.3" features = [ "http1", "http2", "server", "tokio", ] [dev-dependencies.pretty_env_logger] version = "0.5.0" default-features = false [dev-dependencies.tokio] version = "1.0" features = [ "io-std", "macros", "net", "rt-multi-thread", ] [dev-dependencies.tokio-rustls] version = "0.25" [features] async_std_rustls = [ "use_rustls", "use_async_std", ] default = [] hyper_rustls = [ "use_rustls", "use_tokio", ] use_async_std = [ "async-std", "generic-async-http-client/use_async_h1", ] use_openssl = [ "openssl", "native-tls", ] use_rustls = [ "generic-async-http-client/rustls", "rustls", "ring", "rcgen/pem", "rcgen/ring", "rustls-pemfile", ] use_tokio = [ "tokio/fs", "tokio/time", "generic-async-http-client/use_hyper", ]