Update Zmpl version

This commit is contained in:
Bob Farrell 2024-02-08 19:19:22 +00:00
parent 787f8653e7
commit 9f772c8dbe
2 changed files with 3 additions and 3 deletions

View File

@ -21,8 +21,8 @@
// `hash`, otherwise you are communicating that you expect to find the old hash at // `hash`, otherwise you are communicating that you expect to find the old hash at
// the new URL. // the new URL.
// //
.url = "https://github.com/jetzig-framework/zmpl/archive/abe0d2b27f22b449eb021bcf8f5722fa38229c6a.tar.gz", .url = "https://github.com/jetzig-framework/zmpl/archive/dde755c61b2cf7ddbb65c81b98a8877c0806cf6e.tar.gz",
.hash = "122007e90e8db4781ef886cc6c11b4fba6d9b0cf79d0df0e616894c7f72ac1f5f4cb", .hash = "122093ac6e80128800873132da4a2f2e754cd2b7b7c3f0e84bdf6fa385f80615c37d",
// This is computed from the file contents of the directory of files that is // This is computed from the file contents of the directory of files that is
// obtained after fetching `url` and applying the inclusion rules given by // obtained after fetching `url` and applying the inclusion rules given by
// `paths`. // `paths`.

View File

@ -3,6 +3,6 @@
// This file should _not_ be stored in version control. // This file should _not_ be stored in version control.
pub const templates = struct { pub const templates = struct {
pub const index = @import(".index.zmpl.compiled.zig"); pub const index = @import(".index.zmpl.compiled.zig");
pub const users_get = @import("users/.get.zmpl.compiled.zig");
pub const quotes_get = @import("quotes/.get.zmpl.compiled.zig"); pub const quotes_get = @import("quotes/.get.zmpl.compiled.zig");
pub const users_get = @import("users/.get.zmpl.compiled.zig");
}; };