[package]
edition = "2024"
rust-version = "1.85.1"
name = "flense"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Purpose-oriented lensing"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/biteablepet/flense"
[features]
default = []
[lib]
name = "flense"
path = "src/lib.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "compile"
path = "tests/compile.rs"
[[test]]
name = "lens"
path = "tests/lens.rs"
[[test]]
name = "lens_mut"
path = "tests/lens_mut.rs"
[[test]]
name = "lens_slice"
path = "tests/lens_slice.rs"
[[test]]
name = "lens_slice_mut"
path = "tests/lens_slice_mut.rs"
[dependencies]
[dev-dependencies.assert2]
version = "0.4.0"
[dev-dependencies.trybuild]
version = "1.0.116"
[lints.clippy]
correctness = "warn"
expect_used = "warn"
indexing_slicing = "warn"
nursery = "warn"
panic = "warn"
pedantic = "warn"
todo = "warn"
undocumented_unsafe_blocks = "warn"
unnecessary_safety_comment = "warn"
unused_trait_names = "warn"
unwrap_used = "warn"
[lints.rust]
missing_docs = "warn"
unused_qualifications = "warn"