Files
NLnetLabs-domain/macros/Cargo.toml
T
arya dradjicaandGitHub 08189fcc55 Switch to Rust 2024 (#645)
Now that our MSRV is past 1.85, we can switch to the 2024 edition. This
changes some minor behavior in the language and exposes new lints (both
from check and clippy). In particular, unsafe functions now require
unsafe blocks to call other unsafe functions; this is quite a nice
change as it exposes more places where safety comments are needed.
2026-06-01 14:53:22 +02:00

29 lines
524 B
TOML

[package]
name = "domain-macros"
description = "Procedural macros for the `domain` crate."
authors.workspace = true
version.workspace = true
rust-version.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
license.workspace = true
documentation = "https://docs.rs/domain-macros"
[lib]
proc-macro = true
[dependencies.proc-macro2]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = ["full", "visit"]
[dependencies.quote]
version = "1.0"