[package]
edition = "2024"
rust-version = "1.85"
name = "bitsandbytes-macros"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for the `bitsandbytes` crate: #[bin], #[bitfield], #[derive(BitEnum)]."
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/RawSocketLabs/rsl"
resolver = "2"
[lib]
name = "bnb_macros"
path = "src/lib.rs"
proc-macro = true
[dependencies.proc-macro-crate]
version = "3"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "3.0"
features = [
"full",
"extra-traits",
]
[lints.clippy]
module_inception = "allow"
print_stderr = "warn"
print_stdout = "warn"
upper_case_acronyms = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "deny"