Compare commits
No commits in common. "master" and "zig-develop" have entirely different histories.
master
...
zig-develo
3 changed files with 9 additions and 13 deletions
2
.github/workflows/zig-build.yaml
vendored
2
.github/workflows/zig-build.yaml
vendored
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
.{
|
||||
.name = .smithy,
|
||||
.name = "smithy",
|
||||
.version = "1.0.0",
|
||||
.fingerprint = 0xccfd3d0281810cb8,
|
||||
.paths = .{
|
||||
"build.zig",
|
||||
"build.zig.zon",
|
||||
|
@ -10,5 +9,6 @@
|
|||
"LICENSE",
|
||||
},
|
||||
|
||||
.dependencies = .{},
|
||||
.dependencies = .{
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue