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.

41 lines
993 B

9 months ago
1 day ago
  1. [package]
  2. name = "acme_common"
  3. version = "0.23.0"
  4. authors = ["Rodolphe Breard <rodolphe@what.tf>"]
  5. edition = "2018"
  6. readme = "../README.md"
  7. repository = "https://github.com/breard-r/libreauth"
  8. license = "MIT OR Apache-2.0"
  9. include = ["src/**/*", "Cargo.toml", "Licence_*.txt"]
  10. publish = false
  11. rust-version = "1.74.0"
  12. [lib]
  13. name = "acme_common"
  14. [features]
  15. default = []
  16. crypto_openssl = []
  17. openssl_dyn = ["crypto_openssl", "openssl", "openssl-sys"]
  18. openssl_vendored = ["crypto_openssl", "openssl/vendored", "openssl-sys/vendored"]
  19. ed25519 = []
  20. ed448 = []
  21. [dependencies]
  22. base64 = "0.22.0"
  23. daemonize = "0.5.0"
  24. env_logger = "0.11.3"
  25. glob = "0.3.1"
  26. log = "0.4.21"
  27. minijinja = "2.5.0"
  28. native-tls = "0.2.11"
  29. openssl = { version = "0.10.64", optional = true }
  30. openssl-sys = { version = "0.9.101", optional = true }
  31. punycode = "0.4.1"
  32. reqwest = { version = "0.12.1", default-features = false }
  33. serde_json = "1.0.114"
  34. syslog = "7.0.0"
  35. toml = "0.8.12"
  36. [target.'cfg(unix)'.dependencies]
  37. nix = "0.29.0"