summaryrefslogtreecommitdiffstats
path: root/vendor/gix-quote/src/lib.rs
blob: b86336b3b0b0dde36a0d3fd1af1fd77d483f5f97 (plain)
1
2
3
4
5
6
7
8
9
//! Provides functions to quote and possibly unquote strings with different quoting styles.
#![deny(rust_2018_idioms, missing_docs)]
#![forbid(unsafe_code)]

///
pub mod ansi_c;

mod single;
pub use single::single;