edmv 1.0.1

Bulk rename files using your favorite editor
[package]
name = "edmv"
version = "1.0.1"
description = "Bulk rename files using your favorite editor"
authors = ["Liam <liam@scalzulli.com>"]
license = "CC0-1.0"
homepage = "https://github.com/terror/edmv"
repository = "https://github.com/terror/edmv"
edition = "2021"
categories = ["command-line-utilities"]
keywords = ["command-line", "productivity", "utility"]
resolver = "2"

[lints.rust]
mismatched_lifetime_syntaxes = "allow"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }

[lints.clippy]
all = { level = "deny", priority = -1 }
arbitrary-source-item-ordering = "deny"
enum_glob_use = "allow"
ignore_without_reason = "allow"
needless_pass_by_value = "allow"
pedantic = { level = "deny", priority = -1 }
similar_names = "allow"
struct_excessive_bools = "allow"
struct_field_names = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
type_complexity = "allow"
undocumented_unsafe_blocks = "deny"
unnecessary_wraps = "allow"
wildcard_imports = "allow"

[dependencies]
anyhow = "1.0.100"
clap = { version = "4.5.51", features = ["derive"] }
path-absolutize = "3.1.1"
tempfile = "3.23.0"

[dev-dependencies]
executable-path = "1.0.0"
pretty_assertions = "1.4.1"
unindent = "0.2.4"
once_cell = "1.21.3"