22 lines
451 B
TOML
22 lines
451 B
TOML
[package]
|
|
name = "lunar_wave_vm"
|
|
description = "A Lua virtual machine implementation"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
|
|
[dev-dependencies]
|
|
|
|
# blake3, used to hash test vectors
|
|
blake3 = "1.5.0"
|
|
|
|
[target.x86_64-unknown-linux-gnu]
|
|
linker = "/usr/bin/clang"
|
|
# Recommended for flamegraph
|
|
rustflags = ["-Clink-arg=-fuse-ld=lld", "-Clink-arg=-Wl,--no-rosegment"]
|
|
|
|
[profile.release]
|
|
# Recommended for profiling, e.g. flamegraph
|
|
debug = true
|