[package]
edition = "2021"
rust-version = "1.80"
name = "fren-date"
version = "0.2.0"
authors = ["W. Augusto Andreoli <andreoliwa@sent.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "fren - file renamer that understands dates (library)"
homepage = "https://github.com/andreoliwa/fren"
readme = "README.md"
license = "MIT"
repository = "https://github.com/andreoliwa/fren"
[lib]
name = "fren_date"
path = "src/lib.rs"
[[test]]
name = "camel_case_default"
path = "tests/camel_case_default.rs"
[[test]]
name = "executor"
path = "tests/executor.rs"
[[test]]
name = "merge"
path = "tests/merge.rs"
[[test]]
name = "parity_python_doctests"
path = "tests/parity_python_doctests.rs"
[[test]]
name = "planner"
path = "tests/planner.rs"
[[test]]
name = "proptest_invariants"
path = "tests/proptest_invariants.rs"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"std",
]
default-features = false
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.slug-preserve]
version = "0.2.0"
[dependencies.thiserror]
version = "2"
[dependencies.unicode-normalization]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"serde",
"v7",
]
[dependencies.walkdir]
version = "2"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.slug-preserve]
version = "0.2.0"
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"
[lints.clippy]
expect_used = "deny"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
unwrap_used = "deny"