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.

28 lines
780 B

10 months ago
  1. [package]
  2. name = "tacd"
  3. version = "0.22.2"
  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. rust-version = "1.65.0"
  15. [features]
  16. default = ["openssl_dyn"]
  17. crypto_openssl = []
  18. openssl_dyn = ["crypto_openssl", "acme_common/openssl_dyn"]
  19. openssl_vendored = ["crypto_openssl", "acme_common/openssl_vendored"]
  20. [dependencies]
  21. acme_common = { path = "../acme_common" }
  22. anyhow = "1.0"
  23. clap = { version = "4.0", features = ["string"] }
  24. log = "0.4"
  25. openssl = "0.10"
  26. thiserror = "1.0"