redaction 0.2.0

Deprecated: use the `redactable` crate instead
Documentation
//! # Deprecated
//!
//! This crate has been renamed to [`redactable`](https://crates.io/crates/redactable).
//!
//! Please update your `Cargo.toml`:
//!
//! ```toml
//! [dependencies]
//! redactable = "0.1"
//! ```
//!
//! All types and functionality are re-exported from `redactable` for backwards compatibility.

#![deprecated(
    since = "0.2.0",
    note = "This crate has been renamed to `redactable`. Please use `redactable` instead."
)]

pub use redactable::*;