-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathCargo.toml
33 lines (29 loc) · 929 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
# SPDX-License-Identifier: MIT
[package]
name = "zram-generator"
version = "1.2.1"
authors = ["Zbigniew Jędrzejewski-Szmek <[email protected]>",
"Igor Raits <[email protected]>",
"наб <[email protected]>"]
license = "MIT"
description = "Systemd unit generator for zram swap devices."
homepage = "https://github.com/systemd/zram-generator"
edition = "2021"
exclude = ["tests/07a-mount-point-excl", "tests/10-example"]
[dependencies]
anyhow = "1.0.12"
clap = { version = "4.5", default-features = false, features = ["std", "cargo", "help", "error-context"] }
liboverdrop = "0.1.0"
rust-ini = ">=0.15, <0.19"
log = { version = "0.4", features = ["std"] }
fasteval = { version = "0.2", default-features = false }
[dev-dependencies]
tempfile = "3"
fs_extra = "1.3"
nix = ">=0.22, <0.24"
ctor = "0.2"
[profile.release]
lto = true
opt-level = "z"
codegen-units = 1
panic = "abort"