Skip to content

Commit

Permalink
initialize nom-language
Browse files Browse the repository at this point in the history
  • Loading branch information
Geal committed Dec 8, 2024
1 parent c5c8f49 commit 4e8f4d0
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,4 @@ coveralls = { repository = "Geal/nom", branch = "main", service = "github" }
maintenance = { status = "actively-developed" }

[workspace]
members = [".", "benchmarks/"]
members = [".", "benchmarks/", "nom-language"]
11 changes: 11 additions & 0 deletions nom-language/Cargo.toml
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 added nom-language/src/error.rs
Empty file.
8 changes: 8 additions & 0 deletions nom-language/src/lib.rs
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;

0 comments on commit 4e8f4d0

Please sign in to comment.