update cargo deps

This commit is contained in:
Jordan Petridis
2019-09-13 02:55:10 +03:00
parent 70772a61a9
commit 1192642811
5 changed files with 143 additions and 286 deletions
+5 -5
View File
@@ -6,7 +6,7 @@ edition = "2018"
[dependencies]
ammonia = "3.0.0"
chrono = "0.4.6"
chrono = "0.4.9"
derive_builder = "0.7.1"
lazy_static = "1.3.0"
log = "0.4.6"
@@ -16,8 +16,8 @@ rss = "1.7.0"
url = "2.1.0"
xdg = "2.2.0"
xml-rs = "0.8.0"
futures = "0.1.25"
hyper = "0.12.25"
futures = "0.1.29"
hyper = "0.12.34"
http = "0.1.16"
tokio = "0.1.18"
hyper-tls = "0.3.2"
@@ -29,11 +29,11 @@ base64 = "0.10.1"
[dependencies.diesel]
features = ["sqlite", "r2d2"]
version = "=1.3.0"
version = "1.4.2"
[dependencies.diesel_migrations]
features = ["sqlite"]
version = "=1.3.0"
version = "1.4.0"
[dev-dependencies]
rand = "0.7.0"
+1 -1
View File
@@ -67,7 +67,7 @@ impl Save<Source> for Source {
let db = connection();
let con = db.get()?;
self.save_changes::<Source>(&con).map_err(From::from)
self.save_changes::<Source>(&*con).map_err(From::from)
}
}