1 | #![allow(non_upper_case_globals)] |
---|---|
2 | #![allow(non_camel_case_types)] |
3 | #![allow(non_snake_case)] |
4 | #![allow(clippy::approx_constant)] |
5 | #![allow(clippy::missing_safety_doc)] |
6 | #![allow(clippy::redundant_static_lifetimes)] |
7 | #![allow(clippy::too_many_arguments)] |
8 | #![allow(clippy::type_complexity)] |
9 | |
10 | extern crate libc; |
11 | |
12 | include!(concat!(env!("OUT_DIR"), "/bindings.rs")); |
13 | |
14 | #[macro_use] |
15 | mod avutil; |
16 | pub use avutil::*; |
17 |