ggg/Cargo.toml

18 lines
539 B
TOML
Raw Permalink Normal View History

2023-06-09 11:46:26 -07:00
[package]
name = "ggg"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3.3", features = ["derive"] }
2023-09-12 12:07:24 -07:00
color-print = "0.3.5"
iced = {version="0.10.0", features=["image", "debug", "tokio"]}
regex = "1.8.4"
reqwest = {version="0.11.18",features=["blocking"]}
scraper = "0.16.0"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.97"
2023-08-22 11:26:19 -07:00
tokio = {version="1.32.0",features=["macros","rt-multi-thread"]}