2022-05-21 18:12:10 +00:00
|
|
|
[package]
|
|
|
|
name = "supper"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
|
|
|
eframe = "0.18"
|
|
|
|
egui_extras = { version = "0.18", features = ["image"] }
|
|
|
|
ehttp = "0.2"
|
|
|
|
image = { version = "0.24" }
|
|
|
|
scrap = "0.5"
|
|
|
|
|
|
|
|
anyhow = "1.0"
|
|
|
|
futures = "0.3"
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
2022-05-22 17:19:13 +00:00
|
|
|
serde_json = "1"
|
2022-05-21 18:12:10 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
|
2022-05-22 17:19:13 +00:00
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
|
|
|
2022-05-22 20:25:47 +00:00
|
|
|
img_hash = "3"
|
|
|
|
|
2022-05-22 20:38:20 +00:00
|
|
|
csv = "1"
|
|
|
|
time = { version = "0.3", features = ["formatting"] }
|