1
Fork 0
bautils/Cargo.toml

30 lines
553 B
TOML
Raw Normal View History

2023-10-31 13:51:57 +00:00
# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "bautils"
description = "Bauke's Ad-hoc Utilities."
repository = "https://github.com/Bauke/bautils"
license = "AGPL-3.0-or-later"
version = "0.1.0"
authors = ["Bauke <me@bauke.xyz>"]
edition = "2021"
[[bin]]
name = "bautils"
path = "source/main.rs"
2023-11-01 16:56:32 +00:00
[dependencies]
2024-01-22 11:32:33 +00:00
chrono = "0.4.31"
regex = "1.10.3"
2023-11-01 16:56:32 +00:00
2023-10-31 13:51:57 +00:00
[dependencies.clap]
features = ["derive"]
2024-01-22 11:32:33 +00:00
version = "4.4.18"
2024-01-16 11:06:18 +00:00
[lints.clippy]
missing_docs_in_private_items = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"