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.

34 lines
762 B

4 years ago
  1. [package]
  2. name = "acme_common"
  3. version = "0.9.0"
  4. authors = ["Rodolphe Breard <rodolphe@what.tf>"]
  5. edition = "2018"
  6. repository = "https://github.com/breard-r/libreauth"
  7. readme = "../README.md"
  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. openssl_dyn = ["openssl", "openssl-sys"]
  15. [dependencies]
  16. attohttpc = { version = "0.15", default-features = false }
  17. base64 = "0.12"
  18. daemonize = "0.4"
  19. env_logger = "0.7"
  20. handlebars = "3.0"
  21. log = "0.4"
  22. native-tls = "0.2"
  23. openssl = { version = "0.10", optional = true }
  24. openssl-sys = { version = "0.9", optional = true }
  25. punycode = "0.4"
  26. serde_json = "1.0"
  27. syslog = "5.0"
  28. toml = "0.5"
  29. [target.'cfg(unix)'.dependencies]
  30. nix = "0.18"