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.0 KiB

1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
  1. [package]
  2. name = "acmed"
  3. version = "0.25.0-dev"
  4. authors = ["Rodolphe Bréard <rodolphe@what.tf>"]
  5. edition = "2021"
  6. description = "ACME (RFC 8555) client daemon"
  7. readme = "README.md"
  8. repository = "https://github.com/breard-r/acmed"
  9. license = "MIT OR Apache-2.0"
  10. keywords = ["acme", "tls", "X.509"]
  11. categories = ["cryptography"]
  12. include = ["src/**/*", "Cargo.toml", "LICENSE-*.txt"]
  13. publish = false
  14. rust-version = "1.74.0"
  15. [features]
  16. default = ["openssl_dyn"]
  17. crypto_openssl = []
  18. openssl_dyn = ["crypto_openssl"]
  19. openssl_vendored = ["crypto_openssl"]
  20. ed25519 = []
  21. ed448 = []
  22. [dependencies]
  23. tokio = { version = "1.42.0", default-features = false, features = ["rt", "rt-multi-thread"] }
  24. tracing = { version = "0.1.41", default-features = false, features = ["std"] }
  25. tracing-subscriber = { version = "0.3.19", default-features = false, features = ["ansi", "fmt", "std"] }
  26. [target.'cfg(unix)'.dependencies]
  27. [build-dependencies]
  28. [profile.release]
  29. opt-level = "z"
  30. debug = false
  31. lto = true
  32. codegen-units = 1
  33. panic = "abort"
  34. strip = true
  35. incremental = false