serde-brief 0.2.0

A brief, self-descriptive, serde-compatible binary format.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Here lives more detailed documentation and explanations for this crate and its binary format.
//!
//! - [Format Specification](./format/index.html)
//! - [Profile-Guided Optimization](./pgo/index.html)

pub mod format {
	#![doc = include_str!("../../docs/format-specification.md")]
}

pub mod pgo {
	#![doc = include_str!("../../docs/pgo.md")]
}