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.

33 lines
687 B

6 years ago
  1. [package]
  2. name = "acme_common"
  3. version = "0.6.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. [lib]
  11. name = "acme_common"
  12. [features]
  13. default = ["openssl"]
  14. standalone = ["ring"]
  15. [dependencies]
  16. base64 = "0.10"
  17. daemonize = "0.4"
  18. env_logger = "0.6"
  19. handlebars = "2.0.0-beta.2"
  20. http_req = "0.5"
  21. log = "0.4"
  22. openssl = { version = "0.10", optional = true }
  23. ring = { version = "0.14", optional = true }
  24. serde_json = "1.0"
  25. syslog = "4.0"
  26. time = "0.1"
  27. toml = "0.5"
  28. [target.'cfg(unix)'.dependencies]
  29. nix = "0.14"