chore: rename to mute

This commit is contained in:
Roman Godmaire 2024-03-09 07:55:17 -05:00
parent 282071efc1
commit 26ba457e8e
3 changed files with 9 additions and 9 deletions

14
Cargo.lock generated
View file

@ -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"

View file

@ -1,5 +1,5 @@
[package]
name = "mal"
name = "mute"
version = "0.1.0"
edition = "2021"

View file

@ -8,7 +8,7 @@ fn main() {
let env = evaluator::core_environment();
let mut input = String::new();
println!("MAL -- REPL");
println!("Mute -- REPL");
loop {
print!("> ");