Cargo.toml 604 B

123456789101112131415161718192021222324252627
  1. # -*- coding: utf-8 -*-
  2. [package]
  3. name = "letmein-systemd"
  4. description = "Authenticated port knocking - Systemd support"
  5. version = { workspace = true }
  6. edition = { workspace = true }
  7. rust-version = { workspace = true }
  8. license = { workspace = true }
  9. authors = { workspace = true }
  10. homepage = { workspace = true }
  11. repository = { workspace = true }
  12. readme = "README.md"
  13. categories = { workspace = true }
  14. keywords = { workspace = true }
  15. [features]
  16. default = []
  17. tcp = []
  18. [dependencies]
  19. anyhow = { workspace = true }
  20. libc = { workspace = true }
  21. sd-notify = { workspace = true }
  22. # vim: ts=4 sw=4 expandtab