From 26ba457e8e6b0160d3fbc9d5b0c526395f0018dc Mon Sep 17 00:00:00 2001 From: Roman Godmaire Date: Sat, 9 Mar 2024 07:55:17 -0500 Subject: [PATCH] chore: rename to mute --- Cargo.lock | 14 +++++++------- Cargo.toml | 2 +- src/main.rs | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b1819c5..9a454c7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -131,7 +131,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" [[package]] -name = "mal" +name = "memchr" +version = "2.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" + +[[package]] +name = "mute" version = "0.1.0" dependencies = [ "anyhow", @@ -139,12 +145,6 @@ dependencies = [ "thiserror", ] -[[package]] -name = "memchr" -version = "2.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" - [[package]] name = "pin-project-lite" version = "0.2.13" diff --git a/Cargo.toml b/Cargo.toml index 820afc2..688d590 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "mal" +name = "mute" version = "0.1.0" edition = "2021" diff --git a/src/main.rs b/src/main.rs index fa987aa..99ed7e7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,7 +8,7 @@ fn main() { let env = evaluator::core_environment(); let mut input = String::new(); - println!("MAL -- REPL"); + println!("Mute -- REPL"); loop { print!("> ");