forked from ali77gh/Chap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 1.02 KB
/
Copy pathCargo.toml
File metadata and controls
37 lines (32 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "chap"
version = "2.2.2"
edition = "2021"
description = "Chap is an easy to learn, interpretive, scripting language written in Rust"
license = "GPL-3.0"
readme = "README.md"
# documentation = "https://docs.rs/chap" # if not set docs.rs will generate one and put it in place
homepage = "https://crates.io/crates/chap"
repository = "https://github.com/ali77gh/chap"
categories = ["wasm", "command-line-interface", "compilers"]
keywords = ["programming", "language", "scripting", "eval", "dynamic"]
include = ["src/**/*.rs", "Cargo.toml", "LICENSE", "README.md", "Logo.png"]
[lib]
name = "chap"
path = "src/lib.rs"
[[bin]]
name = "chap"
path = "src/main.rs"
[target.'cfg(not(target_family = "wasm"))'.dependencies]
rustyline = "12.0.0"
rand = "0.8.5"
reqwest = {version = "0.12.24", features = ["blocking", "rustls-tls"]}
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
overflow-checks=false
panic = "abort"
[dependencies]
serde_json = {version = "1.0.145"}
serde = { version = "1.0", features = ["derive"] }