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.

38 lines
912 B

2 years ago
  1. [package]
  2. name = "acme_common"
  3. version = "0.21.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. [lib]
  12. name = "acme_common"
  13. [features]
  14. default = []
  15. crypto_openssl = []
  16. openssl_dyn = ["crypto_openssl", "openssl", "openssl-sys"]
  17. openssl_vendored = ["crypto_openssl", "openssl/vendored", "openssl-sys/vendored"]
  18. [dependencies]
  19. attohttpc = { version = "0.24", default-features = false }
  20. base64 = "0.21"
  21. daemonize = "0.4"
  22. env_logger = "0.10"
  23. glob = "0.3"
  24. log = "0.4"
  25. native-tls = "0.2"
  26. openssl = { version = "0.10", optional = true }
  27. openssl-sys = { version = "0.9", optional = true }
  28. punycode = "0.4"
  29. serde_json = "1.0"
  30. syslog = "6.0"
  31. tinytemplate = "1.2"
  32. toml = "0.7"
  33. [target.'cfg(unix)'.dependencies]
  34. nix = "0.26"