From 9075971696cae25228779e9deb9dba113b3d1b43 Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Mon, 28 Aug 2023 20:22:21 +0100 Subject: Switch to zig package manager instead of using submodules Add smtp library Send a notification on comment. --- comments/build.zig.zon | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 comments/build.zig.zon (limited to 'comments/build.zig.zon') diff --git a/comments/build.zig.zon b/comments/build.zig.zon new file mode 100644 index 0000000..2acd629 --- /dev/null +++ b/comments/build.zig.zon @@ -0,0 +1,18 @@ +.{ + .name = "comments", + .version = "0.0.1", + .dependencies = .{ + .smtp = .{ + .url = "https://code.mfashby.net/smtp-zig/snapshot/smtp-zig-main.tar.xz", + .hash = "12205e7087360185eea859ae9265cc4be54c519d5f8d205f66f655d4f8e7e0045dc1", + }, + .mustache = .{ + .url = "https://github.com/MFAshby/mustache-zig/archive/refs/heads/stage3.tar.gz", + .hash = "1220fdf239b6ece687324bb600c72d5ad7a278df2ece86599aee6adf932064686cef", + }, + .zigwebserver = .{ + .url = "https://code.mfashby.net/zigwebserver/snapshot/zigwebserver-main.tar.xz", + .hash = "122066ea438ccbe3e006e84563746705cd46f3c7d1389c8fa8cccf2cdf681959495e", + } + } +} \ No newline at end of file -- cgit v1.2.3-ZIG