summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: faf5548b05261f403ec8a5276e96b1df17863cb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- coding: utf-8 -*-

[workspace]
members = [
    "letmein",
    "letmein-conf",
    "letmein-fwproto",
    "letmein-proto",
    "letmein-seccomp",
    "letmein-systemd",
    "letmeind",
    "letmeinfwd",
]
resolver = "2"

[workspace.package]
version = "4.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"
build-target = "0.4"
clap = { version = "4", default-features = false, features = [ "std", "help", "usage", "error-context" ] }
getrandom = "0.2"
hickory-proto = "0.24"
hickory-resolver = "0.24"
hmac = "0.12"
libc = "0.2"
nftables = "0.4"
sd-notify = "0.4"
seccompiler = "0.4"
sha3 = "0.10"
subtle = "2"
tokio = "1"
user_lookup = { version = "0.3", default-features = false }

letmein-conf = { version = "4", path = "./letmein-conf" }
letmein-fwproto = { version = "4", path = "./letmein-fwproto" }
letmein-proto = { version = "4", path = "./letmein-proto" }
letmein-seccomp = { version = "4", path = "./letmein-seccomp" }
letmein-systemd = { version = "4", 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
bues.ch cgit interface