sinoptik/Cargo.toml
Paul van Tilburg 79dac18655
Parse Buienradar as CSV file using serde
* Add the `csv` crate as a dependency
* Use the `Row` struct as intermediate object
* Turn the `parse_value` function into the `convert_value` function that
  cannot fail
2022-02-13 16:46:02 +01:00

15 lines
300 B
TOML

[package]
name = "sinoptik"
version = "0.1.0"
edition = "2021"
[dependencies]
csv = "1.1.6"
chrono = "0.4.19"
chrono-tz = "0.6.1"
color-eyre = "0.5.6"
geocoding = "0.3.1"
image = "0.24.0"
reqwest = { version = "0.11.9", features = ["json"] }
rocket = { version = "0.5.0-rc.1", features = ["json"] }