tchoutchou/Cargo.toml
ato 84d7e20baa
All checks were successful
continuous-integration/drone/push Build is passing
feat: basic handle of multipart form-data
2023-02-15 19:34:58 +01:00

37 lines
828 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" }
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" }