From 508550c4d5c1b8933decfb47fc02481959ab0c65 Mon Sep 17 00:00:00 2001 From: Rory Dudley Date: Fri, 16 Feb 2024 19:21:58 -0700 Subject: Initial commit An extremely miniamal shell. It is capable of forking processes, and passing arguments to them, but that's pretty much it. --- Cargo.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..e7d40d3 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "dwarvish" +version = "0.0.0" +edition = "2021" +license = "MIT" +description = "A POSIX compliance shell and tiny functional programming language" + +[[bin]] +name = "dwvsh" +path = "src/main.rs" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] -- cgit v1.2.3