From 957c49d2be270bfbdad71afa7e93e967839b261b Mon Sep 17 00:00:00 2001 From: nikeedev Date: Mon, 15 Apr 2024 09:56:28 +0200 Subject: [PATCH] up --- Cargo.lock | 4 ++-- Cargo.toml | 4 +++- rain.toml | 4 ++-- src/main.rs | 6 ++++-- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d3bbb71..eddfa3f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -111,8 +111,8 @@ dependencies = [ ] [[package]] -name = "rain-lang" -version = "0.0.0" +name = "rain" +version = "0.1.0-alpha" dependencies = [ "colored", "serde", diff --git a/Cargo.toml b/Cargo.toml index 592b625..f44ffcf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,9 @@ [package] -name = "rain-lang" +name = "rain" +description = "Rain programming language compiler source code" edition = "2021" authors = ["hello@nikee.dev "] +version = "0.1.0-alpha" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/rain.toml b/rain.toml index 8232436..2481d27 100644 --- a/rain.toml +++ b/rain.toml @@ -1,5 +1,5 @@ -#### https://github.com/nikeedev/storm -#### How the storm project and droplet manager would look like +# https://github.com/nikeedev/storm +# How the storm project and droplet manager would look like [project] diff --git a/src/main.rs b/src/main.rs index 6eb086d..0c8af6d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,9 +1,11 @@ +#![allow(dead_code)] +#![allow(unused)] + mod rain; use std::{ - collections::HashMap, env, fs, hash::Hash, process + collections::HashMap, env, fs, process }; use colored::*; -use toml; use serde::Deserialize; use rain::lexer::*;