diff --git a/example/build.zig b/example/build.zig index d2ff66c..2d36ed4 100644 --- a/example/build.zig +++ b/example/build.zig @@ -35,7 +35,7 @@ pub fn build(b: *std.Build) void { .target = target, .optimize = optimize, }); - exe.addModule("aws", aws_dep.module("aws")); + exe.root_module.addImport("aws", aws_dep.module("aws")); // This declares intent for the executable to be installed into the // standard location when the user invokes the "install" step (the default // step when running `zig build`). diff --git a/example/build.zig.zon b/example/build.zig.zon index 61b7bdd..a107c4b 100644 --- a/example/build.zig.zon +++ b/example/build.zig.zon @@ -1,15 +1,20 @@ .{ .name = "myapp", .version = "0.0.1", + .paths = .{""}, .dependencies = .{ .aws = .{ - .url = "https://git.lerch.org/api/packages/lobo/generic/aws-sdk-with-models/d08d0f338fb86f7d679a998ff4f65f4e2d0db595/d08d0f338fb86f7d679a998ff4f65f4e2d0db595-with-models.tar.gz", - .hash = "1220c8871d93592680ea2dcc88cc52fb4f0effabeed0584d2a5c54f93825741b7c66", + .url = "https://github.com/melhindi/aws-sdk-for-zig/archive/refs/heads/master.tar.gz", + .hash = "12205d584b2ef32dd5346a25f02ad3958eb221a08a47ad8d81605d3e3512364da5f0", + // .url = "https://git.lerch.org/api/packages/lobo/generic/aws-sdk-with-models/d08d0f338fb86f7d679a998ff4f65f4e2d0db595/d08d0f338fb86f7d679a998ff4f65f4e2d0db595-with-models.tar.gz", + // .hash = "1220c8871d93592680ea2dcc88cc52fb4f0effabeed0584d2a5c54f93825741b7c66", }, .smithy = .{ - .url = "https://git.lerch.org/lobo/smithy/archive/41b61745d25a65817209dd5dddbb5f9b66896a99.tar.gz", - .hash = "122087deb0ae309b2258d59b40d82fe5921fdfc35b420bb59033244851f7f276fa34", + .url = "https://github.com/melhindi/smithy/archive/refs/heads/master.tar.gz", + .hash = "12209568cc5c0bad2fcf6a62dbf6792fbbf3727214da98b21c390fc399f6dd743d3a", + // .url = "https://git.lerch.org/lobo/smithy/archive/41b61745d25a65817209dd5dddbb5f9b66896a99.tar.gz", + // .hash = "122087deb0ae309b2258d59b40d82fe5921fdfc35b420bb59033244851f7f276fa34", }, }, }