Skip to main content

msrtc_rans/
lib.rs

1// Copyright (c) Infinity Abundance.
2// Licensed under the MIT license.
3// Derived from Microsoft MLVC msrtc_rans (MIT)
4// See NOTICE file for attribution.
5
6//! # msrtc-rans
7//!
8//! Safe public Rust entropy-coder API for msrtc_rans.
9//!
10//! This crate provides the public API for the rANS entropy coder,
11//! including entropy encoder/decoder, streams, and distribution
12//! construction.
13
14#![forbid(unsafe_code)]
15#![deny(missing_docs)]
16
17/// Re-export the core rANS primitives.
18pub use msrtc_rans_core::*;