diff options
| author | Sophie Forrest <git@sophieforrest.com> | 2024-08-30 23:35:45 +1200 |
|---|---|---|
| committer | Sophie Forrest <git@sophieforrest.com> | 2024-08-30 23:35:45 +1200 |
| commit | 5126c9ed83fe6169463566e74f966a4a63e57ca0 (patch) | |
| tree | 99be8b093f6736eba59c529300519985d9c1c5c6 /Cargo.toml | |
feat: initial commit of brainf interpreter
Diffstat (limited to '')
| -rw-r--r-- | Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..b9c05cb --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "brainf_rs" +version = "0.1.0" +edition = "2021" +resolver = "2" + +[dependencies] +clap = { features = ["derive"], version = "4.3.21" } +fs-err = "2.9.0" +miette = { features = ["fancy"], version = "5.10.0" } +thiserror = "1.0.44" + +[features] +default = ["utilities"] +utilities = [] |