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

View file

@ -1,5 +1,5 @@
[package] [package]
name = "lisp-in-rust" name = "crisp"
version = "0.1.0" version = "0.1.0"
edition = "2021" 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 = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";