diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2022-06-07 22:03:23 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2022-06-08 00:43:44 -0400 |
| commit | 9fa89e735859d008673663b740c217d0731e71e1 (patch) | |
| tree | b99916754d40c24125b7764eeafaec6851c0face /Cargo.toml | |
| parent | 77f19a9f86b1395f0c74e0860c9466b848a3052f (diff) | |
Move back to stable rust.
`maud`, which was the main reason for nightlies, relies on proc macros. Those are stable in the 2021 edition, and maud 0.23+ uses them in a stable-friendly way.
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -5,15 +5,14 @@ repository = "https://github.com/ojacobson/things-to-check/" publish = false authors = ["Owen Jacobson <owen@grimoire.ca>"] homepage = "https://things-to-check.herokuapp.com/" -edition = "2018" +edition = "2021" [badges.travis-ci] project = "ojacobson/things-to-check" branch = "main" [dependencies] -actix-rt = "1.0" -actix-web = "2.0" +actix-web = "3.3.3" pulldown-cmark = "0.7" rand = "0.7" serde = "1.0" @@ -21,9 +20,12 @@ serde_urlencoded = "0.6" serde_yaml = "0.8" thiserror = "1.0" url = "2.1" -maud = { version = "0.22", features = ["actix-web"] } +maud = { version = "0.23.0", features = ["actix-web"] } +actix-rt = "1.1.1" [dev-dependencies] lazy_static = "~1.4" -proptest = "~0.10" -proptest-derive = "~0.2" +proptest = "1.0.0" +proptest-derive = "0.3.0" + +[features] |
