blob: 5524666abc05c4873433beac7cadbe96f1d1891f [file] [log] [blame]
#![deny(deprecated, clippy::all, clippy::pedantic)]
use thiserror::Error;
#[derive(Error, Debug)]
pub enum Error {
#[deprecated]
#[error("...")]
Deprecated,
}