[package]
edition = "2024"
name = "rust-keypaths"
version = "1.9.0"
authors = ["Your Name <your.email@example.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A static dispatch, faster alternative to rust-key-paths - Type-safe, composable keypaths for Rust with superior performance"
readme = "README.md"
keywords = [
"keypath",
"type-safe",
"composable",
"static-dispatch",
"zero-cost",
]
categories = ["data-structures"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/akashsoni01/rust-key-paths"
[features]
default = []
nightly = []
parking_lot = ["dep:parking_lot"]
tagged = ["dep:tagged-core"]
tokio = ["dep:tokio"]
[lib]
name = "rust_keypaths"
path = "src/lib.rs"
[[example]]
name = "containers"
path = "examples/containers.rs"
[[example]]
name = "deeply_nested"
path = "examples/deeply_nested.rs"
[[example]]
name = "locks_and_tagged"
path = "examples/locks_and_tagged.rs"
[[example]]
name = "partial_and_any_keypaths"
path = "examples/partial_and_any_keypaths.rs"
[[example]]
name = "writable_containers"
path = "examples/writable_containers.rs"
[[bench]]
name = "deeply_nested"
path = "benches/deeply_nested.rs"
harness = false
[dependencies.parking_lot]
version = "0.12"
optional = true
[dependencies.tagged-core]
version = "1.0.1"
optional = true
[dependencies.tokio]
version = "1.38.0"
features = ["sync"]
optional = true
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]