aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: a4144f80c956a9aa48417b1be44bcc6e9a224860 (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
# -*- coding: utf-8 -*-

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

[workspace.package]
edition = "2021"
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"
bincode = "1"
clap = "4"
configparser = "3"
getrandom = "0.2"
hickory-proto = "0.24"
hickory-resolver = "0.24"
hmac = "0.12"
nftables = "0.4"
sd-notify = { git = "https://github.com/lnicola/sd-notify.git", rev = "5f9cbef17f33549c60d322342dead37fe11f18a7" }
serde = "1"
sha3 = "0.10"
subtle = "2"
tokio = "1"

letmein-conf = { version = "1", path = "./letmein-conf" }
letmein-proto = { version = "1", path = "./letmein-proto" }
letmein-systemd = { version = "1", path = "./letmein-systemd" }

[profile.release]
opt-level = 3
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