dvb-cc 0.2.1

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

pub use cc_data::*;