-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
59 lines (53 loc) · 1.53 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
[package]
name = "bootupd"
description = "Bootloader updater"
license = "Apache-2.0"
version = "0.2.24"
authors = ["Colin Walters <walters@verbum.org>"]
edition = "2021"
rust-version = "1.75.0"
include = ["src", "LICENSE", "Makefile", "systemd"]
# See https://github.com/coreos/cargo-vendor-filterer
[package.metadata.vendor-filter]
platforms = ["*-unknown-linux-gnu"]
tier = "2"
[[bin]]
name = "bootupd"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
bincode = "1.3.2"
cap-std-ext = "4.0.3"
camino = "1.1.9"
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5", default-features = false, features = ["cargo", "derive", "std", "help", "usage", "suggestions"] }
env_logger = "0.11"
fail = { version = "0.5", features = ["failpoints"] }
fn-error-context = "0.2.1"
fs2 = "0.4.3"
hex = "0.4.3"
libc = "^0.2"
libsystemd = ">= 0.3, < 0.8"
log = "^0.4"
openat = "0.1.20"
openat-ext = ">= 0.2.2, < 0.3.0"
openssl = "^0.10"
os-release = "0.1.0"
regex = "1.11.1"
rustix = { version = "0.38.38", features = ["process", "fs"] }
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
tempfile = "^3.13"
widestring = "1.1.0"
walkdir = "2.3.2"
[profile.release]
# We assume we're being delivered via e.g. RPM which supports split debuginfo
debug = true
[package.metadata.release]
disable-publish = true
disable-push = true
post-release-commit-message = "cargo: development version bump"
pre-release-commit-message = "cargo: bootupd release {{version}}"
sign-commit = true
sign-tag = true
tag-message = "bootupd {{version}}"