[[bin]]
name = "chap"
path = "src/main.rs"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0.145"
[lib]
name = "chap"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["wasm", "command-line-interface", "compilers"]
description = "Chap is an easy to learn, interpretive, scripting language written in Rust"
edition = "2021"
homepage = "https://crates.io/crates/chap"
include = ["src/**/*.rs", "Cargo.toml", "LICENSE", "README.md", "Logo.png"]
keywords = ["programming", "language", "scripting", "eval", "dynamic"]
license = "GPL-3.0"
name = "chap"
readme = "README.md"
repository = "https://github.com/ali77gh/chap"
version = "2.5.0"
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
overflow-checks = false
panic = "abort"
[target.'cfg(not(target_family = "wasm"))'.dependencies.rand]
version = "0.8.5"
[target.'cfg(not(target_family = "wasm"))'.dependencies.reqwest]
features = ["blocking", "rustls-tls"]
version = "0.12.24"
[target.'cfg(not(target_family = "wasm"))'.dependencies.rustyline]
version = "12.0.0"