32 lines
670 B
TOML
32 lines
670 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",
|
|
] }
|
|
serde_json = { version = "1.0" }
|
|
tokio = { version = "1.0", features = ["full"] }
|