luafcgi/Cargo.toml
DanyLE 3ac6971a36
Some checks failed
gitea-sync/luafcgi/pipeline/head There was a failure building this commit
fix: limut stdout record to 2048bytes to prevent header length overflow
2023-02-01 16:41:09 +01:00

24 lines
485 B
TOML

[package]
name = "luad"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
mlua = { version = "0.8", features = ["lua54", "vendored"] }
clap = "2.33"
nix = "0.26.1"
serde = {version = "1.0", features = ["derive"]}
serde_derive = "1.0"
toml = "0.5"
libc = "0.2"
rand = "0.8.5"
twoway = "0.2.2"
[profile.release]
opt-level = 3
# 's' for size
lto = true
# panic = 'abort'
codegen-units = 1