-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (48 loc) · 1.25 KB
/
Cargo.toml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "teolang"
version = "0.5.1"
description = "A programming language design to be easy to learn for kids"
license = "GPL-3.0-only"
repository = "https://github.com/bencinn/teo"
edition = "2021"
authors = ["Hansnnn <[email protected]>", "ItsPungpond98 <[email protected]>", "Kichaguna <[email protected]"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.71"
clap = { version = "4.1.8", features = ["suggestions", "color", "help", "derive"] }
fwdansi = "1.1.0"
libc = "0.2.146"
rand = "0.8.5"
rust_decimal = { version = "1.31.0", features = ["maths"] }
rust_decimal_macros = "1.31.0"
serde = "1.0.164"
serde_json = "1.0.96"
termcolor = "1.2.0"
windows-sys = "0.48.0"
pest = "2.1"
pest_derive = "2.1"
pest_consume = "1.0.0"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "ast_parser"
harness = false
[target.'cfg(windows)'.dependencies.windows-sys]
features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_Security"
]
[features]
default = ["print", "return", "input", "split", "inputf"]
print = []
return = []
input = []
split = []
inputf = []
join = []
[[bin]]
name = "teo"
path = "src/main.rs"
[profile.release]
panic = 'abort'