46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
[package]
|
|
name = "donquota"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
resolver = "2"
|
|
license = "BSD-3-Clause"
|
|
authors = [
|
|
"Programvareverkstedet <projects@pvv.ntnu.no>",
|
|
]
|
|
description = "Modern remote quotactl(2)"
|
|
categories = ["command-line-interface", "command-line-utilities"]
|
|
readme = "README.md"
|
|
autobins = false
|
|
autolib = false
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.100"
|
|
chrono = { version = "0.4.42", features = ["serde"] }
|
|
clap = { version = "4.5.53", features = ["derive"] }
|
|
futures-util = "0.3.31"
|
|
nix = { version = "0.30.1", features = [] }
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
tokio = { version = "1.49.0", features = ["macros", "net", "rt-multi-thread", "signal", "sync", "time"] }
|
|
toml = "0.9.10"
|
|
tracing = "0.1.44"
|
|
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
|
|
sd-notify = "0.4.5"
|
|
serde_json = "1.0.148"
|
|
zlink = { version = "0.2.0", features = ["introspection"] }
|
|
clap_complete = "4.5.65"
|
|
|
|
[lib]
|
|
name = "donquota_lib"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "donquotad"
|
|
bench = false
|
|
path = "src/bin/donquotad.rs"
|
|
|
|
[profile.releaselto]
|
|
inherits = "release"
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 1
|