[package] name = "acme-rs" version = "0.2.0" authors = ["Bastian Kersting ", "Tobias Karius ", "Elena Lilova ", "Dominik Jantschar "] license = "MIT" repository = "https://github.com/kariustobias/acme-rs" keywords = ["acme", "network", "client", "SSL", "certificate"] description = "An acme client (RFC8555) written in the rust programming language" readme = "README.md" edition = "2018" [dependencies] serde = { version = "1.0", features = ["derive"] } serde_json = "1" reqwest = { version = "0.11", features = ["blocking", "json"] } openssl = { version = "0.10", features = ["vendored"] } rpki = "0.10.0" base64 = "0.13.0" rouille = "3.0.0" clap = "3.0.0-beta.2" flexi_logger = "0.17.1" log = "0.4.14" [lib] name = "acme_rs" path = "src/lib.rs" [[bin]] name = "acme-rs" path = "src/bin.rs"