Compare commits

..

No commits in common. "master" and "zig-develop" have entirely different histories.

3 changed files with 9 additions and 13 deletions

View file

@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: elerch/setup-zig@v3 - uses: elerch/setup-zig@v3
with: with:
version: 0.14.0 version: 0.13.0
- uses: elerch/zig-action-cache@v1.1.6 - uses: elerch/zig-action-cache@v1.1.6
- name: Build project - name: Build project
run: zig build --summary all run: zig build --summary all

View file

@ -50,7 +50,3 @@ pub fn build(b: *std.Build) void {
const test_step = b.step("test", "Run library tests"); const test_step = b.step("test", "Run library tests");
test_step.dependOn(&run_main_tests.step); test_step.dependOn(&run_main_tests.step);
} }
// define AwsProtocol to support usage within build.zig as an import
const smithy = @import("src/smithy.zig");
pub const AwsProtocol = smithy.AwsProtocol;

View file

@ -1,7 +1,6 @@
.{ .{
.name = .smithy, .name = "smithy",
.version = "1.0.0", .version = "1.0.0",
.fingerprint = 0xccfd3d0281810cb8,
.paths = .{ .paths = .{
"build.zig", "build.zig",
"build.zig.zon", "build.zig.zon",
@ -10,5 +9,6 @@
"LICENSE", "LICENSE",
}, },
.dependencies = .{}, .dependencies = .{
},
} }