16 lines
313 B
TOML
16 lines
313 B
TOML
[package]
|
|
name = "quick_rest"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.11.22", features = ["stream", "json"] }
|
|
bytes = "1.5.0"
|
|
tower = { version = "0.4.13", features = ["full"] }
|
|
thiserror = "1.0.50"
|
|
futures = "0.3.29"
|
|
mlua = { workspace = true }
|