This is actually one of the biggest impacts to benchmark performances at this point. Caching the rendering of the Date header improves "hello world" benchmarks by around 10%.
9 lines
113 B
Rust
9 lines
113 B
Rust
pub use self::decode::Decoder;
|
|
pub use self::encode::Encoder;
|
|
|
|
mod date;
|
|
mod decode;
|
|
mod encode;
|
|
pub mod parse;
|
|
|