-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (35 loc) · 903 Bytes
/
Cargo.toml
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
[package]
name = "lls"
description = "list listening sockets"
version = "0.3.0"
edition = "2021"
authors = ["Julius Michaelis <[email protected]>"]
repository = "https://github.com/jcaesar/lls"
license = "MIT"
categories = ["command-line-utilities"]
keywords = ["listening", "socket", "linux", "cli"]
readme = "README.md"
rust-version = "1.74"
[dependencies]
anstyle = "1.0.8"
anyhow = "1.0.86"
itertools = "0.13.0"
netlink-packet-core = "=0.7.0"
netlink-packet-generic = "0.3.3"
netlink-packet-route = "=0.21.0"
netlink-packet-sock-diag = "=0.4.2"
netlink-packet-wireguard = "0.2.3"
netlink-sys = "=0.8.5"
procfs = "0.16.0"
terminal_size = "0.3.0"
unicode-width = "0.1.13"
uzers = { version = "0.12.1", default-features = false, features = ["cache"] }
[profile.release]
lto = "thin"
strip = "debuginfo"
[profile.minsize]
inherits = "release"
lto = "fat"
codegen-units = 1
opt-level = "z"
strip = true