[package]
edition = "2024"
name = "clasma"
version = "1.0.3"
authors = ["Oliver Bergqvist <spherinder@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A procedural macro for partial borrowing"
documentation = "https://docs.rs/clasma"
readme = "README.md"
keywords = [
"partial-borrowing",
"borrow",
"reference",
"partial-borrow",
"view-types",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/spherinder/clasma"
[badges.maintenance]
status = "deprecated"
[lib]
name = "clasma"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "examples"
path = "tests/examples.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[dependencies.proc-macro2]
version = "1.0.95"
[dependencies.quote]
version = "1.0.40"
[dependencies.syn]
version = "2.0.104"
features = [
"full",
"visit-mut",
"extra-traits",
]