[package]
edition = "2024"
rust-version = "1.88"
name = "evfmt"
version = "0.2.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Emoji Variation Formatter"
homepage = "https://github.com/favonia/evfmt"
documentation = "https://docs.rs/evfmt"
readme = "README.markdown"
keywords = [
"emoji",
"unicode",
"formatter",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/favonia/evfmt"
[lib]
name = "evfmt"
path = "src/lib.rs"
[[bin]]
name = "evfmt"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.ignore]
version = "0.4"
[dependencies.tempfile]
version = "3"
[dev-dependencies.assert_cmd]
version = "=2.2.0"
[dev-dependencies.assert_fs]
version = "=1.1.3"
[dev-dependencies.predicates]
version = "=3.1.4"
[dev-dependencies.proptest]
version = "=1.11.0"
[dev-dependencies.ucd-parse]
version = "=0.1.13"
[target."cfg(unix)".dependencies.xattr]
version = "1.5"
[lints.clippy]
dbg_macro = "warn"
expect_used = "warn"
mutex_atomic = "warn"
panic = "warn"
print_stderr = "warn"
print_stdout = "warn"
rest_pat_in_fully_bound_structs = "warn"
str_to_string = "warn"
string_slice = "warn"
todo = "warn"
too_many_lines = "allow"
unimplemented = "warn"
unwrap_used = "warn"
wildcard_enum_match_arm = "warn"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
single_use_lifetimes = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unexpected_cfgs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
unused_qualifications = "warn"