dvb-ule 0.1.1

Deprecated shim — use the `ule` crate instead.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Deprecated — this crate has been renamed to [`ule`].
//!
//! Add `ule` to your `Cargo.toml` instead of `dvb-ule`.
//! This shim re-exports everything from [`ule`] and will be
//! removed in a future release.
#![no_std]
#![allow(deprecated)]
#![deprecated(since = "0.1.1", note = "renamed to `ule`; update your Cargo.toml")]

pub use ule::*;