1/* 2 Appellation: concision-derive <library> 3 Contrib: FL03 <jo3mccain@icloud.com> 4*/ 5#![cfg_attr(not(feature = "std"), no_std)] 6#![crate_name = "concision_derive"] 7#![crate_type = "proc-macro"] 8 9#[cfg(feature = "alloc")] 10extern crate alloc;