zls/src/shared.zig

14 lines
226 B
Zig
Raw Normal View History

2021-10-02 06:37:11 +01:00
//! 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",
2021-12-30 00:06:10 +00:00
@"0.9.0",
@"0.9.1",
@"0.10.0",
2023-01-28 19:04:21 +00:00
@"0.10.1",
2021-10-02 06:37:11 +01:00
};