2023-10-01 22:56:06 +00:00
|
|
|
[package]
|
|
|
|
name = "lunar_wave_cli"
|
|
|
|
description = "A Lua CLI implementation"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-10-02 00:50:50 +00:00
|
|
|
authors = ["ReactorScram"]
|
2023-10-01 22:56:06 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
lunar_wave_vm = { path = "../lunar_wave_vm" }
|
|
|
|
|
2023-10-03 20:59:06 +00:00
|
|
|
[profile.release]
|
|
|
|
codegen-units = 1
|
|
|
|
lto = "fat"
|
|
|
|
|
2023-10-01 22:56:06 +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"]
|