catwalk_s_protobuf/
lib.rs

1#![warn(
2    deprecated_in_future,
3    keyword_idents,
4    trivial_casts,
5    unused_import_braces
6)]
7
8pub mod conversion;
9
10#[cfg(test)]
11mod tests {
12    #[test]
13    fn it_works() {
14        assert_eq!(2 + 2, 4);
15    }
16}