I mostly want to have a list of queries that I know I'll need, and then I can either try to translate them into Jetquery SQL commands, or use the raw SQL functionality of Jetquery. Need to look at the code for date checking, it's expecting both dates to be set if either one is set.
40 lines
1.6 KiB
Zig
40 lines
1.6 KiB
Zig
.{
|
|
.name = "zuletzt",
|
|
// This is a [Semantic Version](https://semver.org/).
|
|
// In a future version of Zig it will be used for package deduplication.
|
|
.version = "0.0.0",
|
|
|
|
// This field is optional.
|
|
// This is currently advisory only; Zig does not yet do anything
|
|
// with this value.
|
|
//.minimum_zig_version = "0.11.0",
|
|
|
|
// This field is optional.
|
|
// Each dependency must either provide a `url` and `hash`, or a `path`.
|
|
// `zig build --fetch` can be used to fetch all dependencies of a package, recursively.
|
|
// Once all dependencies are fetched, `zig build` no longer requires
|
|
// internet connectivity.
|
|
.dependencies = .{
|
|
.jetzig = .{
|
|
.url = "https://github.com/jetzig-framework/jetzig/archive/8a4f91f26a5d6a9b34a47011e63e779280590bc2.tar.gz",
|
|
.hash = "1220dac633f4b6a3c40d2b8d5a3cb2fdd513601eb762ccb15c418e0646923d42cfe9",
|
|
},
|
|
.zeit = .{
|
|
.url = "https://github.com/rockorager/zeit/archive/refs/heads/main.tar.gz",
|
|
.hash = "122022233835adc719535a8e7cefdd2902a67bbfb7ef198441ca9ce89c0593f488c2",
|
|
},
|
|
},
|
|
.paths = .{
|
|
// This makes *all* files, recursively, included in this package. It is generally
|
|
// better to explicitly list the files and directories instead, to insure that
|
|
// fetching from tarballs, file system paths, and version control all result
|
|
// in the same contents hash.
|
|
"",
|
|
// For example...
|
|
//"build.zig",
|
|
//"build.zig.zon",
|
|
//"src",
|
|
//"LICENSE",
|
|
//"README.md",
|
|
},
|
|
}
|