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
924 B

3 years ago
  1. [package]
  2. name = "acme_common"
  3. version = "0.18.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.18", default-features = false }
  20. base64 = "0.13"
  21. daemonize = "0.4"
  22. env_logger = "0.9"
  23. glob = "0.3"
  24. libc = "0.2"
  25. log = "0.4"
  26. native-tls = "0.2"
  27. openssl = { version = "0.10", optional = true }
  28. openssl-sys = { version = "0.9", optional = true }
  29. punycode = "0.4"
  30. serde_json = "1.0"
  31. syslog = "6.0"
  32. tinytemplate = "1.2"
  33. toml = "0.5"
  34. [target.'cfg(unix)'.dependencies]
  35. nix = "0.23"