Files
const-macros/Cargo.toml
2026-03-24 16:45:42 +01:00

29 lines
835 B
TOML

[package]
name = "const-macros"
description = "Crate with some useful macros for const-time stuff"
version = "0.1.0"
edition = "2024"
license = "MIT"
repository = "https://git.javalsai.tuxcord.net/rust/const-macros"
keywords = ["compile", "const", "macro"]
categories = ["development-tools::procedural-macro-helpers"]
[lib]
proc-macro = true
[dependencies]
[lints.clippy]
cargo = { level = "warn", priority = -1 }
multiple_crate_versions = { level = "allow" } # otherwise there's too much
correctness = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
option_if_let_else = { level = "allow" } # I personally sometimes prefer what this prevents
pedantic = { level = "deny", priority = -1 }
perf = { level = "deny", priority = -1 }
style = { level = "deny", priority = -1 }
unwrap_used = "deny"