Initial setup for the parser.

This commit is contained in:
Tom Alexander
2022-07-15 23:26:49 -04:00
commit ee9e6297a6
13 changed files with 350 additions and 0 deletions

17
Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "toy"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "toy"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.17"
nom = "7.1.1"
pretty_env_logger = "0.4.0"
[features]