2023-09-24 21:16:10 +00:00
|
|
|
[package]
|
2023-09-25 06:59:18 +00:00
|
|
|
name = "lunar_wave_vm"
|
|
|
|
description = "A Lua virtual machine implementation"
|
2023-09-24 21:16:10 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-26 17:04:17 +00:00
|
|
|
|
|
|
|
[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
|