We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9113d9 commit 0222e07Copy full SHA for 0222e07
.github/workflows/ci.yml
@@ -13,7 +13,7 @@ jobs:
13
strategy:
14
matrix:
15
os: [ubuntu-latest]
16
- version: [0.14.0, ""]
+ version: [0.14.0, 0.15.1, ""]
17
fail-fast: false
18
runs-on: ${{ matrix.os }}
19
steps:
src/msgpack.zig
@@ -10,14 +10,14 @@ const comptimePrint = std.fmt.comptimePrint;
10
const native_endian = builtin.cpu.arch.endian();
11
12
const big_endian = switch (current_zig.minor) {
- 11 => std.builtin.Endian.Big,
- 12, 13, 14, 15 => std.builtin.Endian.big,
- else => @compileError("not support current version zig"),
+ 11 => std.builtin.Endian.Big,
+ 12, 13, 14, 15, 16 => std.builtin.Endian.big,
+ else => @compileError("not support current version zig"),
};
const little_endian = switch (current_zig.minor) {
- 11 => std.builtin.Endian.Little,
- 12, 13, 14, 15 => std.builtin.Endian.little,
20
+ 11 => std.builtin.Endian.Little,
+ 12, 13, 14, 15, 16 => std.builtin.Endian.little,
21
22
23
/// the Str Type
0 commit comments