aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Ashby <martin@ashbysoft.com>2024-05-26 14:48:20 +0100
committerMartin Ashby <martin@ashbysoft.com>2024-05-26 14:48:20 +0100
commit17790173f953d34fd0e2c9cd7c8e0c9bf9be4e5f (patch)
treea0f7831087ac28c9f3f3bad231ed93f2d2b7cd68
parentc99cb339e87b28d937899f9561f106968772ee0c (diff)
downloadsmtp-zig-main.tar.gz
smtp-zig-main.tar.bz2
smtp-zig-main.tar.xz
smtp-zig-main.zip
Changes for latest zig masterHEADmain
-rw-r--r--build.zig6
-rw-r--r--src/main.zig4
2 files changed, 5 insertions, 5 deletions
diff --git a/build.zig b/build.zig
index a5c2c1d..05f7cc3 100644
--- a/build.zig
+++ b/build.zig
@@ -6,15 +6,15 @@ pub fn build(b: *std.Build) void {
const lib = b.addStaticLibrary(.{
.name = "smtp",
- .root_source_file = .{ .path = "src/main.zig" },
+ .root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
});
b.installArtifact(lib);
- _ = b.addModule("smtp", .{ .root_source_file = .{ .path = "src/main.zig" } });
+ _ = b.addModule("smtp", .{ .root_source_file = b.path("src/main.zig") });
const main_tests = b.addTest(.{
- .root_source_file = .{ .path = "src/main.zig" },
+ .root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
});
diff --git a/src/main.zig b/src/main.zig
index 03322b6..954d93e 100644
--- a/src/main.zig
+++ b/src/main.zig
@@ -341,8 +341,8 @@ test "send email" {
\\
\\This is a test message
;
- const user = std.os.getenv("SMTP_USERNAME").?;
- const pass = std.os.getenv("SMTP_PASSWORD").?;
+ const user = std.posix.getenv("SMTP_USERNAME").?;
+ const pass = std.posix.getenv("SMTP_PASSWORD").?;
var client = try Client.init(std.testing.allocator, "mail.mfashby.net:587", .{ .user = user, .pass = pass });
defer client.deinit();
try client.send_mail("martin@mfashby.net", &[_][]const u8{"martin@mfashby.net"}, mail);