umanux/Cargo.toml

33 lines
806 B
TOML
Raw Normal View History

2020-09-21 09:05:38 +02:00
[package]
name = "adduser"
version = "0.1.0"
description = "Library for managing Linux users and their directories"
2020-09-21 09:05:38 +02:00
authors = ["Dietrich <dietrich@teilgedanken.de>"]
edition = "2018"
license = "MIT OR Apache-2.0"
keywords = ["user", "admin", "linux", "manage"]
categories = ["system-tools", "system-tools::user-management"]
repository = "https://git.teilgedanken.de/Rust/useradd/"
readme = "README.md"
2020-09-21 09:05:38 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-09-30 20:58:24 +02:00
regex = "1"
lazy_static = "1.4"
2020-10-01 09:38:13 +02:00
log = "0.4"
simplelog = "0.8"
2020-10-26 14:33:05 +01:00
chrono = "0.4"
env_logger = "0.8"
2020-11-05 09:01:51 +01:00
derive_builder = "0.9"
2020-11-11 06:58:17 +01:00
clap = "3.0.0-beta"
2020-11-05 09:01:51 +01:00
[dev-dependencies]
2020-11-11 06:58:17 +01:00
tempfile = "3.1"
test_bin= "0.3"
2020-11-11 06:58:17 +01:00
# optimize for size at cost of compilation speed.
[profile.release]
lto = true
codegen-units = 1