beet_core 0.0.8

Core utilities and types for other beet crates
1
2
3
4
5
6
7
8
9
//! Token utilities shared by both `beet_core` and `beet_core_macros`
// Be careful with imports etc in this module, they must be compiled
// for both crates.
#![allow(unused)]
mod attribute_group;
pub mod pkg_ext;
pub use attribute_group::*;
mod named_field;
pub use named_field::*;