100-days-of-rust/Misc-Projects/random_quote/Cargo.toml

14 lines
385 B
TOML
Raw Normal View History

2023-03-24 00:52:21 +00:00
[package]
name = "random_quote"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
json = "0.12.4"
serde_json = "1.0.94"
reqwest = { version = "0.11", features = ["json", "blocking"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0.130", features = ["derive"] }