Cargo.toml 614 B

12345678910111213141516171819202122232425262728
  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. unix = []
  19. [dependencies]
  20. anyhow = { workspace = true }
  21. libc = { workspace = true }
  22. sd-notify = { workspace = true }
  23. # vim: ts=4 sw=4 expandtab