11 lines
182 B
Zig
11 lines
182 B
Zig
//! Specifically shared between both build.zig and main app code.
|
|
|
|
pub const ZigVersion = enum {
|
|
master,
|
|
@"0.7.0",
|
|
@"0.7.1",
|
|
@"0.8.0",
|
|
@"0.8.1",
|
|
@"0.9.0",
|
|
};
|