1 // Copyright 2023 The ChromiumOS Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #![warn(clippy::missing_panics_doc)] 6 #![warn(clippy::panic)] 7 #![warn(clippy::unwrap_used)] 8 9 mod bool_decoder; 10 pub mod parser; 11 mod probs; 12