diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2020-07-31 16:06:39 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2020-07-31 16:06:39 -0400 |
| commit | fba6fbfdfde8257efb5e06bb35e9ddad0e24df03 (patch) | |
| tree | d570bebf057e4a89cc354233dc59cdaf9d713a36 | |
| parent | edf5b562c09964f4a8f72549b955a07f8ca20322 (diff) | |
Use released `maud` crate.
The maintainer has put up-to-date packages on crates.io, so let's use 'em for hygiene.
| -rw-r--r-- | Cargo.lock | 13 | ||||
| -rw-r--r-- | Cargo.toml | 2 |
2 files changed, 9 insertions, 6 deletions
@@ -872,8 +872,9 @@ checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" [[package]] name = "maud" -version = "0.21.0" -source = "git+https://github.com/lambda-fairy/maud#240ecf03b8c16021a609397a056d6ff342a6e3bc" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84613702fc079d2e22a2d39b9a1b80a8da9e82b13fb5fe7abcd488928ea75fdb" dependencies = [ "actix-web", "futures", @@ -884,12 +885,14 @@ dependencies = [ [[package]] name = "maud_htmlescape" version = "0.17.0" -source = "git+https://github.com/lambda-fairy/maud#240ecf03b8c16021a609397a056d6ff342a6e3bc" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0fb85bccffc42302ad1e1ed8679f6a39d1317f775a37fbc3f79bdfbe054bfb7" [[package]] name = "maud_macros" -version = "0.21.0" -source = "git+https://github.com/lambda-fairy/maud#240ecf03b8c16021a609397a056d6ff342a6e3bc" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5eb626dcc05fdacb1796b5efae3ea50ca1213713925093e2febb7d33ba5c9bcd" dependencies = [ "matches", "maud_htmlescape", @@ -23,7 +23,7 @@ thiserror = "~1.0" url = "~2.1" [dependencies.maud] -git = "https://github.com/lambda-fairy/maud" +version = "~0.22" features = ["actix-web"] [dev-dependencies] |
