stwp-rs/Cargo.toml

18 lines
433 B
TOML
Raw Permalink Normal View History

2024-07-08 09:48:13 -07:00
[package]
name = "stwp"
description = "Tracker for Save the Web Project"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = [
"derive",
] }
serde_json = "1.0"
chrono = "0.4.38"
2024-07-09 03:38:48 -07:00
futures = "0.3.30"