mirror of
https://github.com/Noratrieb/brainfuck.git
synced 2026-01-14 13:35:00 +01:00
22 lines
443 B
TOML
22 lines
443 B
TOML
[package]
|
|
name = "brainfuck"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bumpalo = { version = "3.9.1", features = ["allocator_api"] }
|
|
clap = { version = "3.1.9", features = ["derive"] }
|
|
owo-colors = "3.3.0"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3.5"
|
|
insta = "1.14.0"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
|
|
[[bench]]
|
|
name = "opts"
|
|
harness = false
|