You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

40 lines
1.1 KiB

[package]
name = "acmed"
version = "0.18.0"
authors = ["Rodolphe Breard <rodolphe@what.tf>"]
edition = "2018"
description = "ACME (RFC 8555) client daemon"
readme = "../README.md"
repository = "https://github.com/breard-r/acmed"
license = "MIT OR Apache-2.0"
keywords = ["acme", "tls", "X.509"]
categories = ["cryptography"]
build = "build.rs"
include = ["src/**/*", "Cargo.toml", "LICENSE-*.txt"]
publish = false
[features]
default = ["openssl_dyn"]
crypto_openssl = []
openssl_dyn = ["crypto_openssl", "acme_common/openssl_dyn", "attohttpc/tls"]
openssl_vendored = ["crypto_openssl", "acme_common/openssl_vendored", "attohttpc/tls"]
[dependencies]
acme_common = { path = "../acme_common" }
attohttpc = { version = "0.17", default-features = false, features = ["charsets", "json"] }
bincode = "1.3"
clap = "2.32"
glob = "0.3"
log = "0.4"
nom = { version = "6.0", default-features = false, features = [] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tinytemplate = "1.2"
toml = "0.5"
[target.'cfg(unix)'.dependencies]
nix = "0.22"
[build-dependencies]
serde = { version = "1.0", features = ["derive"] }
toml = "0.5"