update project name

This commit is contained in:
Chris Cochrun 2024-11-06 13:24:02 -06:00
parent c5a5037451
commit dbd7b978aa
4 changed files with 13 additions and 16 deletions

22
Cargo.lock generated
View file

@ -104,6 +104,17 @@ dependencies = [
"tracing-error",
]
[[package]]
name = "crisp"
version = "0.1.0"
dependencies = [
"color-eyre",
"lazy_static",
"pretty_assertions",
"regex",
"rustyline",
]
[[package]]
name = "diff"
version = "0.1.13"
@ -192,17 +203,6 @@ version = "0.4.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
[[package]]
name = "lisp-in-rust"
version = "0.1.0"
dependencies = [
"color-eyre",
"lazy_static",
"pretty_assertions",
"regex",
"rustyline",
]
[[package]]
name = "log"
version = "0.4.22"

View file

@ -1,5 +1,5 @@
[package]
name = "lisp-in-rust"
name = "crisp"
version = "0.1.0"
edition = "2021"

View file

@ -1,3 +0,0 @@
# crisp
A rusty lisp

View file

@ -1,5 +1,5 @@
{
description = "A lisp";
description = "Crisp - A lisp";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";