Initial commit; a basic Logos lexer and some tests.
This commit is contained in:
20
Cargo.toml
Normal file
20
Cargo.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[package]
|
||||
name = "ngr"
|
||||
version = "0.1.0"
|
||||
authors = ["awick"]
|
||||
edition = "2018"
|
||||
|
||||
[lib]
|
||||
name = "ngr"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "ngrc"
|
||||
path = "src/bin.rs"
|
||||
|
||||
[dependencies]
|
||||
logos = "0.11.4"
|
||||
lalrpop-util = "0.19.0"
|
||||
|
||||
[build-dependencies]
|
||||
lalrpop = "0.19.0"
|
||||
Reference in New Issue
Block a user