Skip to content

Commit 4e8f4d0

Browse files
committed
initialize nom-language
1 parent c5c8f49 commit 4e8f4d0

File tree

4 files changed

+20
-1
lines changed

4 files changed

+20
-1
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,4 @@ coveralls = { repository = "Geal/nom", branch = "main", service = "github" }
142142
maintenance = { status = "actively-developed" }
143143

144144
[workspace]
145-
members = [".", "benchmarks/"]
145+
members = [".", "benchmarks/", "nom-language"]

nom-language/Cargo.toml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[package]
2+
name = "nom-language"
3+
version = "0.0.1"
4+
authors = ["contact@geoffroycouprie.com"]
5+
description = "Language parsing focused combinators for the nom parser library"
6+
edition = "2021"
7+
license = "MIT"
8+
repository = "https://github.com/rust-bakery/nom"
9+
10+
[dependencies]
11+
nom = { path = "..", version = "8.0.0-alpha2" }

nom-language/src/error.rs

Whitespace-only changes.

nom-language/src/lib.rs

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
//! # Langage parsing combinators for the nom parser combinators library
2+
//!
3+
//! nom is a parser combinator library with a focus on safe parsing,
4+
//! streaming patterns, and zero copy.
5+
//! While nom provides general purpose combinators, this crate is targeted
6+
//! at language parsing.
7+
8+
pub mod error;

0 commit comments

Comments
 (0)