-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
52 lines (44 loc) · 1.1 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "linux_modules"
version = "0.3.6"
authors = ["Diana"]
edition = "2021"
#
description = "Tool To Manage Linux Kernel Modules"
documentation = "https://docs.rs/linux_modules"
repository = "https://github.com/DianaNites/linux_modules"
readme = "README.md"
keywords = ["linux", "kernel", "module"]
categories = ["os::unix-apis", "command-line-utilities"]
license = "MIT OR Apache-2.0"
[dependencies]
clap = { version = "3.2.23", features = ["derive", "color"] }
anyhow = "1.0.71"
comfy-table = "6.1.4"
linapi = "0.5.3"
quit = "2.0.0"
pager = "0.16.1"
once_cell = "1.17.1"
clap_complete = "3.2.5"
[dev-dependencies]
assert_cmd = "2.0.11"
insta = { version = "1.29.0", features = ["yaml"] }
[[bin]]
path = "src/main.rs"
name = "nms"
[badges]
maintenance = { status = "experimental" }
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
cargo-dist-version = "0.0.7"
rust-toolchain-version = "stable"
ci = ["github"]
installers = []
targets = ["x86_64-unknown-linux-gnu"]
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3