dn-cli 0.1.3

A simple, minimal, and flexible command line utility for organising plaintext files.
Documentation
[[bin]]
doc = true
name = "dn"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0.92"

[dependencies.chrono]
version = "0.4.38"

[dependencies.clap]
features = ["derive", "wrap_help"]
version = "4.5.20"

[dependencies.icu_collator]
version = "1.5.0"

[dependencies.regex]
version = "1.11.1"

[dependencies.serde]
features = ["derive"]
version = "1.0.214"

[dependencies.toml]
version = "0.8.19"

[lib]
doc = false
name = "dn_lib"
path = "src/lib.rs"

[lints.clippy]
allow_attributes_without_reason = "deny"
create_dir = "deny"
dbg_macro = "deny"
empty_enum_variants_with_brackets = "deny"
empty_structs_with_brackets = "deny"
error_impl_error = "deny"
filetype_is_file = "deny"
format_push_string = "deny"
if_then_some_else_none = "deny"
impl_trait_in_params = "deny"
indexing_slicing = "deny"
infinite_loop = "deny"
map_err_ignore = "deny"
map_with_unused_argument_over_ranges = "deny"
missing_assert_message = "warn"
mixed_read_write_in_expression = "deny"
mod_module_files = "deny"
module_name_repetitions = "warn"
needless_raw_strings = "deny"
needless_update = "deny"
panic = "warn"
pathbuf_init_then_push = "deny"
print_stderr = "warn"
pub_without_shorthand = "deny"
redundant_type_annotations = "deny"
renamed_function_params = "deny"
rest_pat_in_fully_bound_structs = "deny"
same_name_method = "deny"
semicolon_outside_block = "deny"
shadow_same = "deny"
str_to_string = "deny"
string_add = "deny"
string_to_string = "deny"
tests_outside_test_module = "deny"
todo = "deny"
too_many_lines = "allow"
try_err = "deny"
undocumented_unsafe_blocks = "deny"
unnecessary_self_imports = "deny"
unneeded_field_pattern = "deny"
unseparated_literal_suffix = "deny"
unwrap_used = "deny"
verbose_file_reads = "deny"

[lints.clippy.all]
level = "deny"
priority = -1

[lints.clippy.cargo]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "deny"
priority = -1

[lints.clippy.restriction]
level = "allow"
priority = -1

[lints.rust]
unsafe_code = "forbid"

[package]
authors = ["Matthew Mark Ibbetson <mmibbetson@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities"]
description = "A simple, minimal, and flexible command line utility for organising plaintext files."
edition = "2021"
homepage = "https://mmibbetson.github.io/software/dn"
keywords = ["cli", "utility", "file", "notes"]
license = "GPL-3.0-or-later"
name = "dn-cli"
readme = "README.md"
repository = "https://github.com/mmibbetson/dn"
rust-version = "1.80.0"
version = "0.1.3"

[profile.release]
lto = true
opt-level = 3
strip = true