This change adds a .rustfmt.toml that includes ALL supported settings, 12 of which we have overridden to attempt to cater to our own proclivities. rustfmt is checked in the rust-nightly CI job.
13 lines
234 B
Rust
13 lines
234 B
Rust
mod encoder;
|
|
mod decoder;
|
|
mod header;
|
|
mod huffman;
|
|
mod table;
|
|
|
|
#[cfg(test)]
|
|
mod test;
|
|
|
|
pub use self::decoder::{Decoder, DecoderError};
|
|
pub use self::encoder::{Encode, EncodeState, Encoder, EncoderError};
|
|
pub use self::header::Header;
|