1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! # Deluxe Core
//!
//! Core functions and traits shared between [`deluxe`](https://docs.rs/deluxe) and
//! [`deluxe_macros`](https://docs.rs/deluxe-macros).
//!
//! This crate is used by [`deluxe_macros`](https://docs.rs/deluxe-macros) to parse its own
//! attributes. Code generated by its derive macros also references items from this crate
//! re-exported into [`deluxe`](https://docs.rs/deluxe). The functions in [`parse_helpers`] are used
//! internally by the derive macros, but can also be used for convenience when manually
//! implementing any of the parsing traits.
//!
//! See the documentation for the [`deluxe`](https://docs.rs/deluxe) crate for a high-level overview
//! of how Deluxe works.
pub use *;
pub use *;
pub use *;
pub use Span;
pub use syn;
pub use ;