[package]
edition = "2021"
rust-version = "1.85"
name = "reliakit-derive"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Derive macros for reliakit traits, implemented with only the standard library proc-macro API and no third-party dependencies."
homepage = "https://github.com/satyakwok/reliakit"
documentation = "https://docs.rs/reliakit-derive"
readme = "README.md"
keywords = [
"derive",
"codec",
"macros",
"canonical",
"reliability",
]
categories = [
"development-tools::procedural-macro-helpers",
"encoding",
"rust-patterns",
]
license = "MIT"
repository = "https://github.com/satyakwok/reliakit"
[lib]
name = "reliakit_derive"
path = "src/lib.rs"
proc-macro = true
[[example]]
name = "protocol"
path = "examples/protocol.rs"
[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"
[[test]]
name = "csv"
path = "tests/csv.rs"
[[test]]
name = "derive"
path = "tests/derive.rs"
[[test]]
name = "json"
path = "tests/json.rs"
[dev-dependencies.reliakit-codec]
version = "0.2"
features = ["alloc"]
default-features = false
[dev-dependencies.reliakit-csv]
version = "0.1.1"
[dev-dependencies.reliakit-json]
version = "0.2"
[lints.rust]
unsafe_code = "forbid"