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.

25 lines
687 B

4 years ago
  1. [package]
  2. name = "tacd"
  3. version = "0.16.0"
  4. authors = ["Rodolphe Breard <rodolphe@what.tf>"]
  5. edition = "2018"
  6. description = "TLS-ALPN Challenge Daemon"
  7. readme = "../README.md"
  8. repository = "https://github.com/breard-r/acmed"
  9. license = "MIT OR Apache-2.0"
  10. keywords = ["acme", "tls", "alpn", "X.509"]
  11. categories = ["cryptography"]
  12. include = ["src/**/*", "Cargo.toml", "LICENSE-*.txt"]
  13. publish = false
  14. [features]
  15. default = ["openssl_dyn"]
  16. crypto_openssl = []
  17. openssl_dyn = ["crypto_openssl", "acme_common/openssl_dyn"]
  18. openssl_vendored = ["crypto_openssl", "acme_common/openssl_vendored"]
  19. [dependencies]
  20. acme_common = { path = "../acme_common" }
  21. clap = "2.32"
  22. log = "0.4"
  23. openssl = "0.10"