lunar_wave/lunar_wave_cli/Cargo.toml

19 lines
436 B
TOML
Raw Normal View History

[package]
name = "lunar_wave_cli"
description = "A Lua CLI implementation"
version = "0.1.0"
edition = "2021"
author = "ReactorScram"
[dependencies]
lunar_wave_vm = { path = "../lunar_wave_vm" }
[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