Create a first pass at a rust parser for the yunq language.

This commit is contained in:
Drew Galbraith 2024-06-11 13:01:58 -07:00
parent 5b1debde54
commit 1cda053758
6 changed files with 793 additions and 0 deletions

7
yunq/rust/Cargo.toml Normal file
View file

@ -0,0 +1,7 @@
[package]
name = "yunq"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4.5.7", features = ["derive"] }