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
//! # Tycho Binary Format
//! The tycho binary format is a minimal, self-describing and traversable data format designed
//! around rust and the serde data model.
//!
//! ### Features
//! - `partial` - Partial Reading/Traversal
//! - `serde` - Serde serialisation and deserialisation
//! - `serde_optimise` - Serde structure optimisation (default)
//! - `serde_types` - Serde structure type serialisation (default)
//! - `async_tokio` - Async reading support with tokio
//! - `compression` - Compression (gzip)
pub use *;
pub use ident;
pub use *;
pub
pub
pub
pub
pub
pub
pub use crateUuid;