37 lines
883 B
TOML
37 lines
883 B
TOML
[package]
|
|
name = "acme-client"
|
|
version = "1.0.1"
|
|
authors = ["Hatter Jiang <jht5945@gmail.com>"]
|
|
edition = "2018"
|
|
description = "Acme auto challenge client, acme-client can issue certificates from Let's encrypt"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
lazy_static = "1.4"
|
|
clap = "2.33"
|
|
rust_util = "0.6"
|
|
acme-lib = "0.8"
|
|
tide = "0.16"
|
|
async-std = { version = "1.8", features = ["attributes"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
deser-hjson = "0.1"
|
|
x509-parser = "0.9"
|
|
reqwest = { version = "0.11", features = ["blocking"] }
|
|
trust-dns-resolver = "0.20"
|
|
simpledateformat = "0.1.3"
|
|
serde_json = "1.0"
|
|
urlencoding = "1.0.0"
|
|
base64 = "0.11.0"
|
|
hmac = "0.7.1"
|
|
sha2 = "0.8.1"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
opt-level = 'z'
|
|
lto = true
|
|
#panic = 'abort'
|
|
|
|
[profile.dev]
|
|
split-debuginfo = "unpacked"
|