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: elerch/setup-zig@v3
with:
version: 0.14.0
version: 0.13.0
- uses: elerch/zig-action-cache@v1.1.6
- name: Build project
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");
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,14 +1,14 @@
.{
.name = .smithy,
.name = "smithy",
.version = "1.0.0",
.fingerprint = 0xccfd3d0281810cb8,
.paths = .{
"build.zig",
"build.zig.zon",
"src",
"README.md",
"LICENSE",
"build.zig",
"build.zig.zon",
"src",
"README.md",
"LICENSE",
},
.dependencies = .{},
.dependencies = .{
},
}