Try to fix

This commit is contained in:
2025-08-14 17:20:16 +08:00
parent 243394db6c
commit d6581b597f
7 changed files with 16 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "msg_tool_macro"
version = "0.1.4"
version = "0.1.5"
edition = "2024"
repository = "https://github.com/lifegpc/msg-tool"
description = "A procedural macro for the msg-tool project."
@@ -11,6 +11,7 @@ proc-macro = true
[features]
artemis-arc = []
unstable = []
[dependencies]
syn = { version = "2", features = ["full"] }

View File

@@ -1,4 +1,5 @@
#![feature(doc_auto_cfg)]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![cfg_attr(feature = "unstable", feature(doc_auto_cfg))]
use proc_macro::TokenStream;
use syn::parse::discouraged::Speculative;
use syn::spanned::Spanned;