mirror of
https://github.com/Noratrieb/brainfuck.git
synced 2026-01-14 21:35:02 +01:00
28 lines
577 B
TOML
28 lines
577 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"
|
|
rand = "0.8.5"
|
|
tracing = "0.1.34"
|
|
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3.5"
|
|
insta = "1.14.0"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
|
|
[profile.dev]
|
|
opt-level = 3
|
|
|
|
[[bench]]
|
|
name = "opts"
|
|
harness = false
|