git_quote/
lib.rs

1//! Provides functions to quote and possibly unquote strings with different quoting styles.
2#![deny(rust_2018_idioms, missing_docs)]
3#![forbid(unsafe_code)]
4
5///
6pub mod ansi_c;
7
8mod single;
9pub use single::single;