From f21a46b374d422724ba3cf3c66736b9e879124d8 Mon Sep 17 00:00:00 2001 From: Raymon Zutekouw <40148684+Raymonzut@users.noreply.github.com> Date: Fri, 7 Jan 2022 16:16:01 +0100 Subject: [PATCH] Complete crate info --- Cargo.toml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 107b84c..ea6a972 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,8 +2,18 @@ name = "mblf" version = "0.1.0" edition = "2018" +description = """ +The MBLF-To-BF compiler written in Rust with Pest. +MBLF is a programming language on top of the esoteric programming language Brainfuck +""" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +authors = ["Raymon Zutekouw "] + +repository = "https://github.com/MBLF-Project/mblf" +license = "MIT OR Apache-2.0" + +keywords = ["compiler", "mblf", "brainfuck", "pest"] +categories = ["compilers", "command-line-utilities", "parser-implementations"] [dependencies] anyhow = "1.0.44"