summaryrefslogtreecommitdiffstats
path: root/vendor/winnow/src/_topic/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/winnow/src/_topic/mod.rs')
-rw-r--r--vendor/winnow/src/_topic/mod.rs33
1 files changed, 33 insertions, 0 deletions
diff --git a/vendor/winnow/src/_topic/mod.rs b/vendor/winnow/src/_topic/mod.rs
new file mode 100644
index 000000000..76687277a
--- /dev/null
+++ b/vendor/winnow/src/_topic/mod.rs
@@ -0,0 +1,33 @@
+//! # Special Topics
+//!
+//! These are short recipes for accomplishing common tasks.
+//!
+//! - [Why `winnow`?][why]
+//! - Formats:
+//! - [Elements of Programming Languages][language]
+//! - [Arithmetic][arithmetic]
+//! - [s-expression][s_expression]
+//! - [json]
+//! - [INI][ini]
+//! - [HTTP][http]
+//! - Special Topics:
+//! - [Implementing `FromStr`][fromstr]
+//! - [Parsing Partial Input][partial]
+//! - [Custom stream][stream]
+//! - [Custom errors][error]
+//!
+//! See also parsers written with `winnow`:
+//!
+//! - [`toml_edit`](https://crates.io/crates/toml_edit)
+
+pub mod arithmetic;
+pub mod error;
+pub mod fromstr;
+pub mod http;
+pub mod ini;
+pub mod json;
+pub mod language;
+pub mod partial;
+pub mod s_expression;
+pub mod stream;
+pub mod why;