[package]
edition = "2021"
name = "mangle"
version = "1.0.0"
authors = ["mattf <matheusfillipeag@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Exolang that can take any utf8 text as valid code and return some result out of it"
homepage = "https://mangle.ga"
documentation = "https://github.com/matheusfillipe/mangle"
readme = "README.md"
keywords = [
"exolang",
"python",
"pyo3",
"repl",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/matheusfillipe/mangle"
[lib]
name = "mangle"
path = "src/lib.rs"
[[bin]]
name = "mangle"
path = "src/main.rs"
[[test]]
name = "readfile"
path = "tests/readfile.rs"
[dependencies.clap]
version = "3.1.8"
features = ["derive"]
[dependencies.dirs]
version = "4.0"
[dependencies.rustyline]
version = "9.1.0"
[dependencies.unicode-segmentation]
version = "1.6.0"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.predicates]
version = "2.1"