Compare commits
No commits in common. "c419359a8c47027839bf0ad9a1adbc7e35795dbf" and "6083ceefe262bb016033a7dfbd995968c86b48b2" have entirely different histories.
c419359a8c
...
6083ceefe2
2
.github/workflows/zig-build.yaml
vendored
2
.github/workflows/zig-build.yaml
vendored
|
@ -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.13.0
|
version: 0.12.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
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"build.zig.zon",
|
"build.zig.zon",
|
||||||
"src",
|
"src",
|
||||||
"README.md",
|
"README.md",
|
||||||
"LICENSE",
|
"LICENSE.md",
|
||||||
},
|
},
|
||||||
|
|
||||||
.dependencies = .{
|
.dependencies = .{
|
||||||
|
|
|
@ -829,7 +829,7 @@ fn getTrait(trait_type: []const u8, value: std.json.Value) SmithyParseError!?Tra
|
||||||
\\aws.protocols#httpChecksum
|
\\aws.protocols#httpChecksum
|
||||||
\\aws.customizations#s3UnwrappedXmlOutput
|
\\aws.customizations#s3UnwrappedXmlOutput
|
||||||
; // NOTE: inputs/outputs are not used in AWS models, but default is and might be handy
|
; // NOTE: inputs/outputs are not used in AWS models, but default is and might be handy
|
||||||
var iterator = std.mem.splitScalar(u8, list, '\n');
|
var iterator = std.mem.split(u8, list, "\n");
|
||||||
while (iterator.next()) |known_but_unimplemented| {
|
while (iterator.next()) |known_but_unimplemented| {
|
||||||
if (std.mem.eql(u8, trait_type, known_but_unimplemented))
|
if (std.mem.eql(u8, trait_type, known_but_unimplemented))
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user