diff --git a/Cargo.lock b/Cargo.lock index 458f17d..9f5da71 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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" diff --git a/Cargo.toml b/Cargo.toml index f072125..930ad9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "lisp-in-rust" +name = "crisp" version = "0.1.0" edition = "2021" diff --git a/README.md b/README.md deleted file mode 100644 index 4912d69..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# crisp - -A rusty lisp \ No newline at end of file diff --git a/flake.nix b/flake.nix index abc053d..34d214f 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,5 @@ { - description = "A lisp"; + description = "Crisp - A lisp"; inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";