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
43
44
45
46
47
48
49
50
51
52
53
//! # `tokel`
//!
//! `tokel` is a facade crate that re-exports both `tokel-engine` and `tokel-derive`
//! when the appropriate crate features have been selected.
//!
//! * `tokel-engine`: enabled via the `engine` feature.
//! * `tokel-derive`: enabled via the `derive` feature (default). The `tokel::stream!` and `tokel::item!`
//! macros are re-exported at the crate root for usability.
//!
//! This crate is `no_std` by default when the `engine` feature is disabled.
//!
//! ---
//!
//! *The following is the main `tokel` workspace documentation:*
//!
pub use crate;