diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2022-06-07 21:51:20 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2022-06-07 21:51:20 -0400 |
| commit | 77f19a9f86b1395f0c74e0860c9466b848a3052f (patch) | |
| tree | e97cf3ae940f98287181c5e074c05763152754d8 | |
| parent | 430f3f80627679d5a9fec401cfc6ff55871b9835 (diff) | |
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.
| -rw-r--r-- | Cargo.toml | 23 |
1 files changed, 10 insertions, 13 deletions
@@ -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" |
