diff options
Diffstat (limited to 'matrix-bin/Cargo.toml')
-rw-r--r-- | matrix-bin/Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/matrix-bin/Cargo.toml b/matrix-bin/Cargo.toml new file mode 100644 index 0000000..029923b --- /dev/null +++ b/matrix-bin/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "matrix-bin" +version = "0.1.0" +edition = "2021" + +[[bin]] +name = "matrix" +path = "src/main.rs" + +[dependencies] +clap = { version = "4", features = [ "derive" ] } +matrix = { path = "../matrix" } +rustyline = "13" |