2023-07-23 18:50:59 +01:00
|
|
|
[package]
|
|
|
|
name = "podal"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-05-08 08:28:54 +01:00
|
|
|
atom_syndication = "0.12"
|
2024-03-20 16:05:45 +00:00
|
|
|
reqwest = { version = "0.12", features = ["json", "blocking"] }
|
2024-10-31 07:47:22 +00:00
|
|
|
scraper = "0.21"
|
2024-05-08 08:28:54 +01:00
|
|
|
clap = { version = "4.5", features = ["derive"] }
|
2024-03-22 20:08:02 +00:00
|
|
|
bytes = "1.6"
|
2024-05-08 08:28:54 +01:00
|
|
|
anyhow = "1.0"
|
2023-07-25 16:57:08 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-05-08 08:28:54 +01:00
|
|
|
tempfile = "3.10"
|
2024-01-20 19:47:13 +00:00
|
|
|
pretty_assertions = "1.4"
|