Cargo.toml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # -*- coding: utf-8 -*-
  2. [workspace]
  3. members = [
  4. "letmein",
  5. "letmein-conf",
  6. "letmein-fwproto",
  7. "letmein-proto",
  8. "letmein-seccomp",
  9. "letmein-systemd",
  10. "letmeind",
  11. "letmeinfwd",
  12. ]
  13. resolver = "2"
  14. [workspace.package]
  15. version = "7.2.0"
  16. edition = "2021"
  17. rust-version = "1.75.0"
  18. license = "MIT OR Apache-2.0"
  19. authors = [ "Michael Büsch <m@bues.ch>" ]
  20. homepage = "https://bues.ch/h/letmein"
  21. repository = "https://github.com/mbuesch/letmein"
  22. readme = "README.md"
  23. categories = [ "authentication", "network-programming", "command-line-utilities", "cryptography" ]
  24. keywords = [ "port-knocking", "port", "knock", "firewall", "nftables" ]
  25. [workspace.dependencies]
  26. anyhow = "1"
  27. build-target = "0.4"
  28. clap = { version = "4", default-features = false, features = [ "std", "help", "usage", "error-context", "derive" ] }
  29. getrandom = "0.2"
  30. hickory-resolver = "0.24"
  31. hmac = "0.12"
  32. libc = "0.2"
  33. nftables = "0.5"
  34. sd-notify = "0.4"
  35. seccompiler = "0.4"
  36. sha3 = "0.10"
  37. subtle = "2"
  38. tokio = "1"
  39. letmein-conf = { version = "7", path = "./letmein-conf" }
  40. letmein-fwproto = { version = "7", path = "./letmein-fwproto" }
  41. letmein-proto = { version = "7", path = "./letmein-proto" }
  42. letmein-seccomp = { version = "7", path = "./letmein-seccomp", default-features = false }
  43. letmein-systemd = { version = "7", path = "./letmein-systemd" }
  44. [profile.release]
  45. opt-level = "z"
  46. lto = "fat"
  47. panic = "abort"
  48. strip = "symbols"
  49. debug-assertions = false
  50. overflow-checks = true
  51. codegen-units = 1
  52. # vim: ts=4 sw=4 expandtab