tchoutchou/Cargo.toml
2023-03-23 18:10:59 +01:00

38 lines
858 B
TOML

[package]
name = "tchoutchou"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
path = "src/cli/main.rs"
name = "tt"
bench = false
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
[dependencies]
futures = { version = "0.3" }
headers = { version = "0.3" }
hyper = { version = "0.14", features = ["full"] }
matchit = { version = "0.7" }
mlua = { version = "0.8", features = [
"lua54",
"vendored",
"async",
"serialize",
] }
mime = { version = "0.3" }
multipart = { version = "0.18", default-features = false, features = [
"server",
], optional = false }
serde_json = { version = "1.0" }
tokio = { version = "1.0", features = ["full"] }
url = { version = "2.3" }