-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (36 loc) · 964 Bytes
/
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
[package]
name = "chimpanzee"
version = "0.2.5"
edition = "2021"
authors = ["Yago Iglesias <yagoiglesias7@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "Monkey programming language implementation (interpreter, compiler and formatter), with added features"
readme = "README.md"
homepage = "https://github.com/Yag000/monkey-rs"
repository = "https://github.com/Yag000/monkey-rs"
documentation = "https://github.com/Yag000/monkey-rs"
keywords = ["monkey", "interpreter", "compiler", "programming-language"]
[lib]
name = "chimpanzee"
path = "src/lib.rs"
[dependencies]
clap = "4.5.4"
clap_derive = "4.5.4"
byteorder = "1.5.0"
num-derive = "0.4.1"
num-traits = "0.2.19"
strum = "0.26.2"
strum_macros = "0.26.2"
rustyline = "14.0.0"
enum_stringify = "0.4.2"
[dev-dependencies]
criterion = "0.5.1"
[[bench]]
name = "formatter_bench"
harness = false
[[bench]]
name = "fibonacci_bench"
harness = false
[[bench]]
name = "array_bench"
harness = false