[package]
edition = "2021"
name = "hdk_derive"
version = "0.7.0-dev.13"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "derive macros for the holochain hdk"
documentation = "https://docs.rs/hdk_derive"
readme = "README.md"
keywords = [
"holochain",
"holo",
"hdk",
]
categories = ["cryptography"]
license = "Apache-2.0"
repository = "https://github.com/holochain/holochain"
[features]
default = []
[lib]
name = "hdk_derive"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "hdk_extern"
path = "tests/hdk_extern.rs"
[[test]]
name = "macros"
path = "tests/macros.rs"
[dependencies.darling]
version = "0.21.3"
[dependencies.heck]
version = "0.5"
[dependencies.holochain_integrity_types]
version = "^0.7.0-dev.13"
default-features = false
[dependencies.paste]
version = "1.0"
[dependencies.proc-macro-error]
version = "1.0.4"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"extra-traits",
]
[dev-dependencies.trybuild]
version = "1.0"
[lints.clippy]
complexity = "deny"
correctness = "deny"
dbg_macro = "deny"
perf = "deny"
style = "deny"
[lints.clippy.cargo]
level = "allow"
priority = -1
[lints.clippy.nursery]
level = "allow"
priority = -1
[lints.clippy.pedantic]
level = "allow"
priority = -1
[lints.clippy.restriction]
level = "allow"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(build_wasm)",
"cfg(loom)",
]