Files
tm_interpreter/Cargo.toml
nichkara fd74b62df2
All checks were successful
Release on main branches / build (ubuntu-20.04) (push) Successful in 45s
Initializing rust environment. / build (ubuntu-20.04) (push) Successful in 47s
Testing automatic releases
2025-09-20 19:28:34 +02:00

23 lines
413 B
TOML

[package]
name = "tm_interpreter"
version = "0.1.0"
edition = "2024"
[dependencies]
[lib]
name = "tm_interpreter"
crate-type = ["staticlib"]
[profile.release]
opt-level = "z"
lto = true
# x86_64 (glibc, statisch)
[target.x86_64-unknown-linux-gnu]
rustflags = ["-C", "target-feature=+crt-static"]
# aarch64 (arm64, statisch)
[target.aarch64-unknown-linux-gnu]
rustflags = ["-C", "target-feature=+crt-static"]