From 97ebe63f97d6960452098aaf008a635ee08a1f43 Mon Sep 17 00:00:00 2001 From: Jeff Date: Mon, 28 Aug 2023 09:51:44 -0400 Subject: [PATCH] Change name in Cargo.toml; Fix file structure --- Cargo.toml | 4 ++-- src/{main.rs => bin/dust.rs} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename src/{main.rs => bin/dust.rs} (100%) diff --git a/Cargo.toml b/Cargo.toml index 019a20a..a78f293 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] -name = "dust" -version = "0.3.0" +name = "dust-lang" +version = "0.1.0" description = "Data-oriented programming language and interactive shell." authors = ["jeff "] repository = "https://git.jeffa.io/jeff/dust.git" diff --git a/src/main.rs b/src/bin/dust.rs similarity index 100% rename from src/main.rs rename to src/bin/dust.rs