-
Notifications
You must be signed in to change notification settings - Fork 34
/
Cargo.toml
36 lines (32 loc) · 905 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "acme-client"
description = "Easy to use ACME client library to issue, renew and revoke TLS certificates"
version = "0.5.3"
authors = ["Onur Aslan <[email protected]>"]
license = "MIT"
keywords = ["letsencrypt", "acme"]
readme = "README.md"
documentation = "https://docs.rs/acme-client"
repository = "https://github.com/onur/acme-client"
[dependencies]
error-chain = "0.12"
log = "0.4"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
base64 = "0.9"
hyper = "0.10"
reqwest = "0.6"
openssl = "0.10"
clap = { version = "2", optional = true }
env_logger = { version = "0.4", optional = true }
foreign-types = { version = "0.3.1", optional = true }
openssl-sys = { version = "0.9.24", optional = true }
[dev-dependencies]
env_logger = "0.4"
[[bin]]
name = "acme-client"
required-features = ["cli"]
[features]
default = ["cli"]
cli = ["clap", "env_logger", "openssl-sys", "foreign-types"]