16 lines
144 B
Rust
16 lines
144 B
Rust
#![feature(decl_macro)]
|
|
|
|
pub mod common;
|
|
|
|
pub mod encoder;
|
|
pub mod decoder;
|
|
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
|
|
#[test]
|
|
fn it_works() {
|
|
}
|
|
}
|