dvb_cc/lib.rs
1//! **Deprecated** — use [`cc_data`] instead.
2//!
3//! This crate is a thin compatibility shim. Everything it exported is now
4//! published under the crate name [`cc-data`](https://crates.io/crates/cc-data).
5//! The API is 100 % identical; migrate by replacing `dvb-cc` with `cc-data` in
6//! your `Cargo.toml` and renaming `dvb_cc::` to `cc_data::` in your source.
7#![no_std]
8#![allow(deprecated)]
9#![doc(hidden)]
10
11pub use cc_data::*;