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"] }
|
|
|
|
image = { version = "0.24" }
|
|
|
|
scrap = "0.5"
|
|
|
|
|
|
|
|
anyhow = "1.0"
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
2022-05-22 17:19:13 +00:00
|
|
|
serde_json = "1"
|
|
|
|
|
2022-05-22 20:25:47 +00:00
|
|
|
img_hash = "3"
|
|
|
|
|
2022-05-22 20:38:20 +00:00
|
|
|
csv = "1"
|
2022-06-03 02:57:45 +00:00
|
|
|
time = { version = "0.3", features = ["formatting", "local-offset"] }
|
|
|
|
|
2022-06-05 20:58:45 +00:00
|
|
|
rand = "0.8"
|
|
|
|
|
2022-06-10 02:47:00 +00:00
|
|
|
tts = "0.22"
|
|
|
|
|
|
|
|
reqwest = { version = "0.11", features = ["blocking", "json"]}
|