mirror of
https://github.com/jetzig-framework/jetzig.git
synced 2025-05-14 22:16:08 +00:00

Use JetQuery's new `Repo.bindConnect()` to get a new Repo bound to a connection for each request. This significantly simplifies connection management and offloads all the connection pool management/reconnecting/etc. to pg.zig where it belongs. Improve development mode SQL syntax highlighting - highlight `SELECT`, `UPDATE`, `DELETE`, `INSERT` in different bolded colors for clarity.
20 lines
642 B
Zig
20 lines
642 B
Zig
.{
|
|
.name = "jetzig-cli",
|
|
.version = "0.0.0",
|
|
.minimum_zig_version = "0.12.0",
|
|
|
|
.dependencies = .{
|
|
.args = .{
|
|
.url = "https://github.com/ikskuh/zig-args/archive/0abdd6947a70e6d8cc83b66228cea614aa856206.tar.gz",
|
|
.hash = "1220411a8c46d95bbf3b6e2059854bcb3c5159d428814099df5294232b9980517e9c",
|
|
},
|
|
.jetquery = .{
|
|
.url = "https://github.com/jetzig-framework/jetquery/archive/52e1cf900c94f3c103727ade6ba2dab3057c8663.tar.gz",
|
|
.hash = "12208a37407d1a7548fd7e81d9f6a9d4897793918023ed559a279a7647dab2d43145",
|
|
},
|
|
},
|
|
.paths = .{
|
|
"",
|
|
},
|
|
}
|