update models to 2025-05-05 (requires additional reserved word guard for "inline")
All checks were successful
AWS-Zig Build / build-zig-amd64-host (push) Successful in 7m12s

This commit is contained in:
Emil Lerch 2025-05-07 12:26:41 -07:00
parent c6a1bb2418
commit f0b66d3cca
Signed by: lobo
GPG key ID: A7B62D657EF764F8
2 changed files with 3 additions and 2 deletions

View file

@ -18,8 +18,8 @@
.hash = "smithy-1.0.0-uAyBgXrRAgB7bdZwFdSwAVSzfmXSu_DZyjh0MlQUdinw",
},
.models = .{
.url = "https://github.com/aws/aws-sdk-go-v2/archive/58cf6509525a12d64fd826da883bfdbacbd2f00e.tar.gz",
.hash = "122017a2f3081ce83c23e0c832feb1b8b4176d507b6077f522855dc774bcf83ee315",
.url = "https://github.com/aws/aws-sdk-go-v2/archive/refs/tags/release-2025-05-05.tar.gz",
.hash = "N-V-__8AAKWdeiawujEcrfukQbb8lLAiQIRT0uG5gCcm4b7W",
},
.zeit = .{
.url = "git+https://github.com/rockorager/zeit#fb6557ad4bd0cd0f0f728ae978061d7fe992c528",

View file

@ -970,5 +970,6 @@ fn avoidReserved(snake_name: []const u8) []const u8 {
if (std.mem.eql(u8, snake_name, "export")) return "@\"export\"";
if (std.mem.eql(u8, snake_name, "union")) return "@\"union\"";
if (std.mem.eql(u8, snake_name, "enum")) return "@\"enum\"";
if (std.mem.eql(u8, snake_name, "inline")) return "@\"inline\"";
return snake_name;
}