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.

39 lines
970 B

4 months 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. [dependencies]
  20. base64 = "0.22.0"
  21. daemonize = "0.5.0"
  22. env_logger = "0.11.3"
  23. glob = "0.3.1"
  24. log = "0.4.21"
  25. minijinja = "1.0.15"
  26. native-tls = "0.2.11"
  27. openssl = { version = "0.10.64", optional = true }
  28. openssl-sys = { version = "0.9.101", optional = true }
  29. punycode = "0.4.1"
  30. reqwest = { version = "0.12.1", default-features = false }
  31. serde_json = "1.0.114"
  32. syslog = "6.1.0"
  33. toml = "0.8.12"
  34. [target.'cfg(unix)'.dependencies]
  35. nix = "0.28.0"