| ... | @@ -157,7 +157,6 @@ pub const Os = struct { | ... | @@ -157,7 +157,6 @@ pub const Os = struct { |
| 157 | .amdpal, | 157 | .amdpal, |
| 158 | .hermit, | 158 | .hermit, |
| 159 | .hurd, | 159 | .hurd, |
| 160 | .wasi, | | |
| 161 | .emscripten, | 160 | .emscripten, |
| 162 | .driverkit, | 161 | .driverkit, |
| 163 | .shadermodel, | 162 | .shadermodel, |
| ... | @@ -180,6 +179,7 @@ pub const Os = struct { | ... | @@ -180,6 +179,7 @@ pub const Os = struct { |
| 180 | .openbsd, | 179 | .openbsd, |
| 181 | .dragonfly, | 180 | .dragonfly, |
| 182 | .solaris, | 181 | .solaris, |
| | 182 | .wasi, |
| 183 | => .semver, | 183 | => .semver, |
| 184 | | 184 | |
| 185 | .linux => .linux, | 185 | .linux => .linux, |
| ... | @@ -377,7 +377,6 @@ pub const Os = struct { | ... | @@ -377,7 +377,6 @@ pub const Os = struct { |
| 377 | .amdpal, | 377 | .amdpal, |
| 378 | .hermit, | 378 | .hermit, |
| 379 | .hurd, | 379 | .hurd, |
| 380 | .wasi, | | |
| 381 | .emscripten, | 380 | .emscripten, |
| 382 | .driverkit, | 381 | .driverkit, |
| 383 | .shadermodel, | 382 | .shadermodel, |
| ... | @@ -454,6 +453,12 @@ pub const Os = struct { | ... | @@ -454,6 +453,12 @@ pub const Os = struct { |
| 454 | .max = .{ .major = 5, .minor = 11, .patch = 0 }, | 453 | .max = .{ .major = 5, .minor = 11, .patch = 0 }, |
| 455 | }, | 454 | }, |
| 456 | }, | 455 | }, |
| | 456 | .wasi => .{ |
| | 457 | .semver = .{ |
| | 458 | .min = .{ .major = 0, .minor = 1, .patch = 0 }, |
| | 459 | .max = .{ .major = 0, .minor = 1, .patch = 0 }, |
| | 460 | }, |
| | 461 | }, |
| 457 | | 462 | |
| 458 | .linux => .{ | 463 | .linux => .{ |
| 459 | .linux = .{ | 464 | .linux = .{ |