-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
72 lines (64 loc) · 2.37 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "autokernel"
version = "2.0.2"
edition = "2021"
authors = ["oddlama <[email protected]>", "clotodex <[email protected]>"]
description = """
Autokernel is a tool for managing your kernel configuration that guarantees semantic correctness.
It checks symbol assignments for validity by creating a native bridge to the kernel's
Kconfig interface and ensures that your configuration does not silently break during kernel updates.
"""
documentation = "https://github.com/oddlama/autokernel"
homepage = "https://github.com/oddlama/autokernel"
repository = "https://github.com/oddlama/autokernel"
keywords = ["kernel", "configuration", "kconfig", "lua"]
categories = ["command-line-utilities"]
license = "MIT"
[features]
index = ["dep:rusqlite", "dep:uuid"]
[[bin]]
name = "autokernel"
[[bin]]
name = "autokernel-index"
required-features = ["index"]
[dependencies]
libc = "0.2.158"
clap = { version = "4.5.17", features = ["derive"] }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = { version = "1.0.128", features = ["unbounded_depth"] }
libloading = "0.8.5"
thiserror = "1.0.63"
anyhow = { version = "1.0.87", features = ["backtrace"] }
colored = "2.1.0"
bitflags = "2.6.0"
mlua = { version = "0.9.9", features = ["luajit"] }
itertools = "0.13.0"
strum = { version = "0.26.3", features = ["derive"] }
rusqlite = { version = "0.32.1", optional = true }
toml = "0.8.19"
tempfile = "3"
uuid = { version = "1.10.0", features = ["v4"], optional = true }
[dev-dependencies]
serial_test = "3.1.1"
[profile.release]
lto = true
[package.metadata.release]
sign-commit = true
sign-tag = true
pre-release-commit-message = "chore: release version {{version}}"
tag-message = "chore: release {{crate_name}} version {{version}}"
tag-prefix = ""
[package.metadata.deb]
section = "utils"
assets = [
["target/release/autokernel", "usr/bin/", "755"],
["LICENSE", "usr/share/doc/autokernel/", "644"],
["README.md", "usr/share/doc/autokernel/README", "644"],
["examples/config.toml", "etc/autokernel/config.toml", "644"],
["examples/config.lua", "etc/autokernel/config.lua", "644"],
]
extended-description = """\
Autokernel is a tool for managing your kernel configuration that guarantees semantic correctness.
It checks symbol assignments for validity by creating a native bridge to the kernel's
Kconfig interface and ensures that your configuration does not silently break during kernel updates.
"""