From 77f19a9f86b1395f0c74e0860c9466b848a3052f Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Tue, 7 Jun 2022 21:51:20 -0400 Subject: Switch to pinned dependency versions. This is in preparation for a bulk update - Github notified me that there are a ton of outdated deps here (which is true), so I'm using this as an opportunity to practice handling stale deps. Part of the motivation here is for `cargo upgrade` (from `cargo-edit`) to be able to do something reasonable. --- Cargo.toml | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 7b96dd3..0bee10c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,19 +12,16 @@ project = "ojacobson/things-to-check" branch = "main" [dependencies] -actix-rt = "~1.0" -actix-web = "~2.0" -pulldown-cmark = "~0.7" -rand = "~0.7" -serde = "~1.0" -serde_urlencoded = "~0.6" -serde_yaml = "~0.8" -thiserror = "~1.0" -url = "~2.1" - -[dependencies.maud] -version = "~0.22" -features = ["actix-web"] +actix-rt = "1.0" +actix-web = "2.0" +pulldown-cmark = "0.7" +rand = "0.7" +serde = "1.0" +serde_urlencoded = "0.6" +serde_yaml = "0.8" +thiserror = "1.0" +url = "2.1" +maud = { version = "0.22", features = ["actix-web"] } [dev-dependencies] lazy_static = "~1.4" -- cgit v1.2.3