shame/lib.rs
1#![doc = include_str!("../README.md")]
2use std::{
3 io::stderr,
4 ops::{Deref, DerefMut},
5 sync::Arc,
6};
7
8pub use derive_everything;
9pub use derive_where;
10
11pub mod clone_on_write;
12
13pub use anyhow;
14pub use regex;
15pub use thiserror;
16pub use tracing;
17pub use tracing_subscriber;
18use tracing_subscriber::EnvFilter;
19
20pub mod prelude;