[package]
edition = "2024"
rust-version = "1.85"
name = "mysql-handler-macros"
version = "0.2.0"
authors = ["ren-yamanashi"]
build = false
include = [
"/src/**/*.rs",
"/Cargo.toml",
"/README.md",
"/LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for mysql-handler engine cdylibs"
homepage = "https://github.com/ren-yamanashi/rusty_mysql_handler"
documentation = "https://docs.rs/mysql-handler-macros"
readme = "README.md"
keywords = [
"mysql",
"ffi",
"plugin",
"storage-engine",
"proc-macro",
]
categories = ["development-tools::procedural-macro-helpers"]
license = "GPL-2.0-only"
repository = "https://github.com/ren-yamanashi/rusty_mysql_handler"
[lib]
name = "mysql_handler_macros"
path = "src/lib.rs"
proc-macro = true
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = ["full"]
[lints.clippy]
doc_markdown = "allow"
manual_let_else = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
redundant_pub_crate = "warn"
single_match_else = "allow"
undocumented_unsafe_blocks = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "warn"
unsafe_op_in_unsafe_fn = "deny"
unused_qualifications = "warn"