-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (28 loc) · 931 Bytes
/
Cargo.toml
File metadata and controls
37 lines (28 loc) · 931 Bytes
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 = "monkey_interpreter"
version = "0.17.0"
description = "Implementation of an interpreter for the Monkey language written in Rust, currently under active development."
authors = ["C <DeveloperC@protonmail.com>"]
edition = "2021"
license = "AGPL-3.0"
repository = "https://github.com/DeveloperC286/monkey_interpreter"
readme = "README.md"
keywords = ["monkey", "interpreter", "compiler", "programming", "language"]
categories = ["command-line-utilities", "development-tools", "compilers", "text-processing", "parser-implementations"]
[dependencies]
# For logging.
log = "0.4.21"
pretty_env_logger = "0.5.0"
# For CLI argument parsing.
clap = { version = "4.5.0", features = ["derive"] }
# For error handling.
anyhow = "1.0.89"
[dev-dependencies]
# For parameterised testing.
rstest = "=0.26.1"
rstest_reuse = "=0.7.0"
# For snapshot testing.
insta = "=1.47.2"
[profile.release]
lto = 'fat'
codegen-units = 1