Add the crate meta data 💙
This commit is contained in:
parent
0eaf38ead0
commit
012feda4fe
1 changed files with 19 additions and 0 deletions
19
Cargo.toml
19
Cargo.toml
|
@ -2,6 +2,25 @@
|
|||
name = "bf-interpreter"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
authors = ["Anas Elgarhy <anas.elgarhy.dev@gmail.com>"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
description = "Brainfu*k interpreter and REPL written in Rust"
|
||||
repository = "https://github.com/anas-elgarhy/bf-interpreter"
|
||||
readme = "README.md"
|
||||
keywords = ["brainfuck", "interpreter", "repl"]
|
||||
categories = ["command-line-utilities"]
|
||||
documentation = "https://docs.rs/bf-interpreter"
|
||||
homepage = "https://github.com/anas-elgarhy/bf-interpreter"
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"README.md"
|
||||
]
|
||||
|
||||
exclude = [
|
||||
"test_code/**/*",
|
||||
"screenshots/**/*"
|
||||
]
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
|
Loading…
Reference in a new issue