lunar_wave/Cargo.toml

22 lines
451 B
TOML
Raw Normal View History

[package]
2023-09-25 06:59:18 +00:00
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"
2023-10-01 07:00:23 +00:00
[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