1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- # -*- coding: utf-8 -*-
- [workspace]
- members = [
- "letmein",
- "letmein-conf",
- "letmein-proto",
- "letmein-systemd",
- "letmeind",
- ]
- resolver = "2"
- [workspace.package]
- version = "2.0.0"
- edition = "2021"
- rust-version = "1.75.0"
- license = "MIT OR Apache-2.0"
- authors = [ "Michael Büsch <m@bues.ch>" ]
- homepage = "https://bues.ch/h/letmein"
- repository = "https://github.com/mbuesch/letmein"
- readme = "README.md"
- categories = [ "authentication", "network-programming", "command-line-utilities", "cryptography" ]
- keywords = [ "port-knocking", "port", "knock", "firewall", "nftables" ]
- [workspace.dependencies]
- anyhow = "1"
- clap = "4"
- getrandom = "0.2"
- hickory-proto = "0.24"
- hickory-resolver = "0.24"
- hmac = "0.12"
- libc = "0.2"
- nftables = "0.4"
- sd-notify = "0.4"
- sha3 = "0.10"
- subtle = "2"
- tokio = "1"
- letmein-conf = { version = "2", path = "./letmein-conf" }
- letmein-proto = { version = "2", path = "./letmein-proto" }
- letmein-systemd = { version = "2", path = "./letmein-systemd" }
- [profile.release]
- opt-level = "z"
- lto = "fat"
- panic = "abort"
- strip = "symbols"
- debug-assertions = false
- overflow-checks = true
- codegen-units = 1
- # vim: ts=4 sw=4 expandtab
|