freneng 0.1.2

A useful, async-first file renaming library
Documentation
[dependencies.chrono]
features = ["serde"]
version = "0.4"

[dependencies.futures]
version = "0.3"

[dependencies.regex]
version = "1.10"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
features = ["fs", "io-util", "macros", "rt-multi-thread"]
version = "1.40"

[dev-dependencies.tempfile]
version = "3.8"

[dev-dependencies.tokio-test]
version = "0.4"

[[example]]
name = "test_same_name_handling"
path = "examples/test_same_name_handling.rs"

[[example]]
name = "test_validation_bug"
path = "examples/test_validation_bug.rs"

[lib]
name = "freneng"
path = "src/lib.rs"

[package]
authors = ["byezy"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["filesystem", "command-line-utilities"]
description = "A useful, async-first file renaming library"
documentation = "https://docs.rs/freneng"
edition = "2024"
homepage = "https://github.com/byezy/freneng"
keywords = ["rename", "file", "batch", "async", "pattern"]
license = "MIT"
name = "freneng"
readme = "README.md"
repository = "https://github.com/byezy/freneng"
version = "0.1.2"

[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
strip = true

[[test]]
name = "audit_tests"
path = "tests/audit_tests.rs"

[[test]]
name = "fs_ops_tests"
path = "tests/fs_ops_tests.rs"

[[test]]
name = "history_tests"
path = "tests/history_tests.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "lib"
path = "tests/lib.rs"

[[test]]
name = "lib_tests"
path = "tests/lib_tests.rs"

[[test]]
name = "pattern_tests"
path = "tests/pattern_tests.rs"

[[test]]
name = "validation_tests"
path = "tests/validation_tests.rs"