summaryrefslogtreecommitdiff
path: root/backend/api/build.zig.zon
diff options
context:
space:
mode:
Diffstat (limited to 'backend/api/build.zig.zon')
-rw-r--r--backend/api/build.zig.zon66
1 files changed, 66 insertions, 0 deletions
diff --git a/backend/api/build.zig.zon b/backend/api/build.zig.zon
new file mode 100644
index 0000000..c2e74dd
--- /dev/null
+++ b/backend/api/build.zig.zon
@@ -0,0 +1,66 @@
+.{
+ // This is the default name used by packages depending on this one. For
+ // example, when a user runs `zig fetch --save <url>`, this field is used
+ // as the key in the `dependencies` table. Although the user can choose a
+ // different name, most users will stick with this provided value.
+ //
+ // It is redundant to include "zig" in this name because it is already
+ // within the Zig package namespace.
+ .name = .axonbox_backend,
+ .fingerprint = 0xe060664ed074e7a5,
+
+ // 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",
+ .dependencies = .{
+ .tls12 = .{
+ .url = "https://github.com/melonedo/zig-tls12/archive/refs/heads/main.zip",
+ .hash = "12202bb2c3824deecd4ccd666ca3dcb9c92c2c68698afdb92b382c0f5cb1b86da8bc",
+ },
+ .json = .{
+ .url = "git+https://github.com/getty-zig/json.git#4a38504cefdc9e5d64ae35364233d6fa4cb78edf",
+ .hash = "1220c7d749d83bcac8daecd67f1f78ee2762df10c9fef123bbf44c882965f644c1e5",
+ },
+ .getty = .{
+ .url = "git+https://github.com/getty-zig/getty.git#78738b665a53db4be85696635b9c832fbca8d273",
+ .hash = "12204235c113ed912d951e381066d587bb398b7175dc635c50c17864946bbd570879",
+ },
+ .sqlite = .{
+ .url = "git+https://github.com/vrischmann/zig-sqlite.git#b1d9eb63de7912becc886e96943ef38732d6f35d",
+ .hash = "1220dffc77f4e5c845b2865f2af5eea8d678e5518054069aaff7eda18b90e7d3dfba",
+ },
+ .smtp_client = .{
+ .url = "git+https://github.com/navewindre/smtp_client.zig#4a9c5d60502832c975215829318f4001c45cf07d",
+ .hash = "smtp_client-0.0.1-AAAAAOyqAgCx6ASqk3OumxyfI8COYAmSuBGYWqZB_8Fe",
+ },
+ .jwt = .{
+ .url = "git+https://github.com/zigster64/jwt.zig#a22862b97c956d0980c531e16fbd0685ad0a3319",
+ .hash = "12202f5862ba02484d23f1e80f354cd421b4e8f0dbeff04af2872da4db8762b870d1",
+ },
+ .uuid = .{
+ .url = "git+https://github.com/r4gus/uuid-zig#e3d8c4a524b52dee777609b4404c0c234daaafd3",
+ .hash = "1220b4deeb4ec1ec3493ea934905356384561b725dba69d1fbf6a25cb398716dd05b",
+ },
+ .zap = .{
+ .url = "git+https://github.com/navewindre/zap-chunked#ac249aa14e867d5d7af78796756b637df1d199eb",
+ .hash = "12201ad7015bbdb76ccb4e82389ed4e28a34bbb2d90fff607ccbea32849d967b576c",
+ },
+ .websocket = .{
+ .url = "git+https://github.com/karlseguin/websocket.zig#fd250d17d96025c404bc788e6ad9b732995f92fc",
+ .hash = "websocket-0.1.0-ZPISdbZVAwAgDzIxt0cpiG4hjPVq92ALsEPLSCPbMQqv",
+ },
+ },
+ .paths = .{
+ "build.zig",
+ "build.zig.zon",
+ "src",
+ // For example...
+ //"LICENSE",
+ //"README.md",
+ },
+}