[package]
edition = "2024"
name = "keypaths-proc"
version = "1.9.0"
authors = ["Your Name <your.email@example.com>"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Proc-macro derive to generate keypath methods using rust-keypaths (static dispatch)"
homepage = "https://github.com/akashsoni01/rust-key-paths"
documentation = "https://docs.rs/keypaths-proc"
readme = "README.md"
keywords = [
"keypaths",
"type-safe",
"macros",
"proc",
"static-dispatch",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/akashsoni01/rust-key-paths"
[lib]
name = "keypaths_proc"
path = "src/lib.rs"
proc-macro = true
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = ["full"]
[dev-dependencies.rust-keypaths]
version = "1.9.0"