From 26ef5d88f36f69bb856aedc7bb50138933d1e036 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 4 Aug 2026 13:37:19 +0800 Subject: feat(metadata): add Description convention metadata type --- mingling/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'mingling/src/lib.rs') diff --git a/mingling/src/lib.rs b/mingling/src/lib.rs index 01edae9..470c64b 100644 --- a/mingling/src/lib.rs +++ b/mingling/src/lib.rs @@ -16,6 +16,10 @@ pub mod CRATE_ROOT { pub use crate::gen_program::*; } +/// Mingling's convention metadatas, which can be bound to types using `#[metadata]`, to provide identification for types +#[cfg(feature = "core")] +pub mod metadata; + #[cfg(feature = "core")] mod example_docs; -- cgit