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.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/vendor/winnow/src/_topic/mod.rs b/vendor/winnow/src/_topic/mod.rs
index 76687277a..72c8145fe 100644
--- a/vendor/winnow/src/_topic/mod.rs
+++ b/vendor/winnow/src/_topic/mod.rs
@@ -12,6 +12,7 @@
//! - [HTTP][http]
//! - Special Topics:
//! - [Implementing `FromStr`][fromstr]
+//! - [Performance][performance]
//! - [Parsing Partial Input][partial]
//! - [Custom stream][stream]
//! - [Custom errors][error]
@@ -19,6 +20,7 @@
//! See also parsers written with `winnow`:
//!
//! - [`toml_edit`](https://crates.io/crates/toml_edit)
+//! - [`hcl-edit`](https://crates.io/crates/hcl-edit)
pub mod arithmetic;
pub mod error;
@@ -28,6 +30,7 @@ pub mod ini;
pub mod json;
pub mod language;
pub mod partial;
+pub mod performance;
pub mod s_expression;
pub mod stream;
pub mod why;