-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (27 loc) · 875 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
[package]
name = "brainterpreter"
version = "0.2.0-alpha.1"
edition = "2021"
description = "An interpreter for a Bauble toy programming language"
authors = ["Dmytro Kovalchuk"]
license = "MIT"
repository = "https://github.com/dimasmith/brainterpreter"
homepage = "https://dimasmith.github.io/brainterpreter/"
documentation = "https://docs.rs/brainterpreter"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4", optional = true, features = ["derive"] }
env_logger = { version = "0.11.0", optional = true }
log = "0.4.20"
thiserror = "1"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
env_logger = "0.11.0"
[[bench]]
name = "brainfuck_benchmark"
harness = false
[features]
cli = ["clap", "env_logger"]
[[bin]]
name = "bauble"
required-features = ["cli"]