diff options
author | Freya Murphy <freya@freyacat.org> | 2024-02-15 23:07:30 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-02-15 23:07:30 -0500 |
commit | cdc6147a35206b290a2ea2d7d400b0899b5e0e43 (patch) | |
tree | 38467d6bd2651d4742aa898adda0ba93ca77db51 /matrix-repl/Cargo.toml | |
download | matrix-cdc6147a35206b290a2ea2d7d400b0899b5e0e43.tar.gz matrix-cdc6147a35206b290a2ea2d7d400b0899b5e0e43.tar.bz2 matrix-cdc6147a35206b290a2ea2d7d400b0899b5e0e43.zip |
new lang => lexer and parser done
Diffstat (limited to 'matrix-repl/Cargo.toml')
-rw-r--r-- | matrix-repl/Cargo.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/matrix-repl/Cargo.toml b/matrix-repl/Cargo.toml new file mode 100644 index 0000000..f1ec1d3 --- /dev/null +++ b/matrix-repl/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "matrix-repl" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +matrix = { path = "../matrix" } +rustyline = "13" |