summaryrefslogtreecommitdiffstats
path: root/vendor/gix-quote/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gix-quote/src/lib.rs')
-rw-r--r--vendor/gix-quote/src/lib.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/gix-quote/src/lib.rs b/vendor/gix-quote/src/lib.rs
new file mode 100644
index 000000000..b86336b3b
--- /dev/null
+++ b/vendor/gix-quote/src/lib.rs
@@ -0,0 +1,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;