[package]
edition = "2021"
rust-version = "1.85.0"
name = "elfo-macros-impl"
version = "0.2.0-alpha.21"
authors = ["Paul Loyd <pavelko95@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Macros for matching and deriving messages, implementation internals"
readme = "README.md"
keywords = [
"elfo",
"actor",
"distributed",
"tokio",
"macros",
]
license = "MIT"
repository = "https://github.com/elfo-rs/elfo"
[lib]
name = "elfo_macros_impl"
path = "src/lib.rs"
[dependencies.proc-macro2]
version = "1.0.92"
[dependencies.quote]
version = "1.0.37"
[dependencies.syn]
version = "2.0.90"
features = [
"full",
"extra-traits",
]
[lints.clippy]
undocumented_unsafe_blocks = "warn"
[lints.rust]
missing_docs = "warn"
unexpected_cfgs = "allow"
unreachable_pub = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1