From a5b8561d1f32e6a3063cb2358312e7beb6ba2cf3 Mon Sep 17 00:00:00 2001 From: Teascade Date: Tue, 23 Jun 2020 21:08:54 +0300 Subject: [PATCH] Make changes to cargo.toml --- Cargo.lock | 3 ++- Cargo.toml | 10 +++++++--- reid_src/test.reid | 3 ++- src/main.rs | 2 ++ 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index afbc995..6af4047 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. [[package]] -name = "Reid" +name = "reid" version = "0.1.0" + diff --git a/Cargo.toml b/Cargo.toml index 63dd5fb..def62c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,13 @@ [package] -name = "Reid" +name = "reid" +description = "Hobbyist programming language made for scripting purposes" version = "0.1.0" authors = ["Teascade "] +license = "MIT" +readme = "README.md" +repository = "https://git.teascade.net/teascade/Reid" +categories = ["command-line-utilities", "parsing"] +keywords = ["compiler", "language", "scripting", "parsing", "virtual machine"] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] diff --git a/reid_src/test.reid b/reid_src/test.reid index ab42029..aeab6ca 100644 --- a/reid_src/test.reid +++ b/reid_src/test.reid @@ -1 +1,2 @@ -let otus = "dotus"; \ No newline at end of file +let otus = "dotus"; +let botus = otus; \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index 82ce3e6..8e1e3e9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,5 @@ +#![forbid(unsafe_code)] + mod compiler; mod errors; mod file_io;