Make changes to cargo.toml
This commit is contained in:
parent
b3fa498f73
commit
a5b8561d1f
3
Cargo.lock
generated
3
Cargo.lock
generated
@ -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"
|
||||
|
||||
|
10
Cargo.toml
10
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 <teascade@gmail.com>"]
|
||||
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]
|
||||
|
@ -1 +1,2 @@
|
||||
let otus = "dotus";
|
||||
let botus = otus;
|
@ -1,3 +1,5 @@
|
||||
#![forbid(unsafe_code)]
|
||||
|
||||
mod compiler;
|
||||
mod errors;
|
||||
mod file_io;
|
||||
|
Loading…
Reference in New Issue
Block a user