legacympt-rs/mpt/Cargo.toml

37 lines
949 B
TOML
Raw Permalink Normal View History

2021-08-29 15:14:10 +02:00
[package]
name = "mpt"
2022-12-19 22:37:36 +01:00
version = "0.1.4"
2021-08-29 15:14:10 +02:00
edition = "2018"
[[bin]]
name = "lmpt"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-09-01 15:06:49 +02:00
addonscript = { path = "../addonscript" }
2022-03-05 01:49:37 +01:00
async-trait = "0.1.52"
clap = { version = "3.1.5", features = ["derive"] }
crossterm = "0.23.0"
2021-08-29 15:14:10 +02:00
futures = "0.3.16"
2022-03-05 01:49:37 +01:00
heck = "0.4.0"
2021-08-29 15:14:10 +02:00
indicatif = "0.16.2"
2022-03-05 01:49:37 +01:00
json5 = "0.4.1"
2021-09-08 17:31:27 +02:00
log = "0.4.14"
2022-03-05 01:49:37 +01:00
miette = { version = "4.2.1", features = ["fancy"] }
mlua = { version = "0.7.4", features = ["luajit", "serialize"] }
percent-encoding = "2.1.0"
2022-03-05 01:49:37 +01:00
reqwest = { version = "0.11.9", features = ["stream"] }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
simplelog = "0.11.2"
tera = "1.15.0"
thiserror = "1.0.30"
tokio = { version = "1.17.0", features = ["rt-multi-thread", "macros", "fs"] }
2021-08-29 15:14:10 +02:00
toml = "0.5.8"
2021-09-01 15:06:49 +02:00
twitch = { path = "../twitch" }
2021-08-29 15:14:10 +02:00
url = "2.2.2"
2021-09-01 15:06:49 +02:00
walkdir = "2.3.2"
zip = "0.5.13"