forked from rust-bakery/nom
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[package] | ||
name = "nom-language" | ||
version = "0.0.1" | ||
authors = ["[email protected]"] | ||
description = "Language parsing focused combinators for the nom parser library" | ||
edition = "2021" | ||
license = "MIT" | ||
repository = "https://github.com/rust-bakery/nom" | ||
|
||
[dependencies] | ||
nom = { path = "..", version = "8.0.0-alpha2" } |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
//! # Langage parsing combinators for the nom parser combinators library | ||
//! | ||
//! nom is a parser combinator library with a focus on safe parsing, | ||
//! streaming patterns, and zero copy. | ||
//! While nom provides general purpose combinators, this crate is targeted | ||
//! at language parsing. | ||
pub mod error; |