[package]
edition = "2024"
rust-version = "1.92"
name = "perl-source-editing"
version = "0.11.0"
authors = ["Steven Zimmerman, CPA <git@effortlesssteven.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Source text editing heuristics for insertion points and display truncation"
homepage = "https://github.com/EffortlessMetrics/perl-lsp"
documentation = "https://docs.rs/perl-source-editing"
readme = "README.md"
keywords = [
"perl",
"source",
"editing",
"heuristics",
]
categories = [
"text-processing",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EffortlessMetrics/perl-lsp"
resolver = "2"
[lib]
name = "perl_source_editing"
path = "src/lib.rs"
doctest = false
[[test]]
name = "source_editing_tests"
path = "tests/source_editing_tests.rs"
[lints.clippy]
collapsible_if = "allow"
dbg_macro = "deny"
expect_used = "deny"
panic = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(ci)",
'cfg(feature, values("slow_tests"))',
]