Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Experimental state management #1704

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@
pub use self::internal::*;
pub use self::traits::*;

pub use self::str::*;

Check warning on line 442 in src/lib.rs

View workflow job for this annotation

GitHub Actions / Test (nightly, --no-default-features --features "alloc")

unused import: `self::str::*`

Check warning on line 442 in src/lib.rs

View workflow job for this annotation

GitHub Actions / Test (nightly, --no-default-features)

unused import: `self::str::*`

Check warning on line 442 in src/lib.rs

View workflow job for this annotation

GitHub Actions / Test (nightly)

unused import: `self::str::*`

Check warning on line 442 in src/lib.rs

View workflow job for this annotation

GitHub Actions / Test (nightly, --no-default-features)

unused import: `self::str::*`

Check warning on line 442 in src/lib.rs

View workflow job for this annotation

GitHub Actions / Test (nightly)

unused import: `self::str::*`

Check warning on line 442 in src/lib.rs

View workflow job for this annotation

GitHub Actions / Test (nightly, --no-default-features --features "alloc")

unused import: `self::str::*`

Check warning on line 442 in src/lib.rs

View workflow job for this annotation

GitHub Actions / Bench

unused import: `self::str::*`

Check warning on line 442 in src/lib.rs

View workflow job for this annotation

GitHub Actions / Bench

unused import: `self::str::*`

#[macro_use]
mod macros;
Expand All @@ -462,6 +462,8 @@

pub mod number;

pub mod state;

#[cfg(all(feature = "std", any(doc, doctest, feature = "docsrs")))]
#[cfg_attr(any(doc, doctest, feature = "docsrs"), doc = include_str!("../doc/nom_recipes.md"))]
pub mod recipes {}