26 lines
722 B
TOML
26 lines
722 B
TOML
[package]
|
|
name = "shutdownr"
|
|
version = "0.1.1"
|
|
authors = ["Samuel FORESTIER <samuel+dev@forestier.app>"]
|
|
description = "A Rust re-implementation of System-V init shutdown(8)"
|
|
edition = "2021"
|
|
homepage = "https://git.forestier.app/HorlogeSkynet/shutdownr"
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[dependencies]
|
|
bincode = "1.3.3"
|
|
chrono = "0.4.24"
|
|
clap = { version = "3.2.25", features = ["derive"] }
|
|
env_logger = "0.9.1"
|
|
log = "0.4.17"
|
|
nix = { version = "0.26.2", features = ["fs", "reboot", "signal"] }
|
|
once_cell = "1.19.0"
|
|
serde = { version = "1.0.200", features = ["derive"] }
|
|
syslog = "6.1.0"
|
|
tokio = { version = "1.37.0", features = ["fs", "io-util", "rt", "time"] }
|
|
utmp-rs = "0.3.0"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|