Skip to main content

corevm_codec/
lib.rs

1#![no_std]
2#![doc = include_str!("../README.md")]
3
4#[cfg(not(any(target_pointer_width = "32", target_pointer_width = "64")))]
5core::compile_error!("Only 32-bit and 64-bit architectures are supported.");
6
7extern crate alloc;
8
9#[cfg(any(feature = "std", test))]
10extern crate std;
11
12mod io;
13mod util;
14
15use self::util::*;
16
17#[doc(hidden)]
18pub mod rans;
19pub mod video;
20
21pub use self::io::*;