Update to Rocket 0.5-rc.2; cargo update

Also switch to the 2021 edition and fully specify the minimal crate
versions for existing dependencies.
This commit is contained in:
Paul van Tilburg 2022-08-22 21:07:56 +02:00
parent 855d2a7eed
commit ac2e83868c
Signed by: paul
GPG Key ID: C6DE073EDA9EEC4D
2 changed files with 567 additions and 450 deletions

1009
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,7 @@
name = "autarco-scraper"
version = "0.1.1"
authors = ["Paul van Tilburg <paul@luon.net>"]
edition = "2018"
edition = "2021"
description = """"
Web service that provides a REST API layer over the My Autarco site/API to get
statistical data of your solar panels.
@ -14,8 +14,8 @@ license = "MIT"
[dependencies]
color-eyre = "0.5.6"
once_cell = "1.9.0"
reqwest = { version = "0.11", features = ["cookies", "json"] }
rocket = { version = "0.5.0-rc.1", features = ["json"] }
reqwest = { version = "0.11.6", features = ["cookies", "json"] }
rocket = { version = "0.5.0-rc.2", features = ["json"] }
serde = "1.0.116"
toml = "0.5.6"
url = "2"
url = "2.2.2"