update to latest zig

This commit is contained in:
Andrew Kelley 2025-03-02 17:13:53 -08:00 committed by CJ van den Berg
parent 942e8dfd4c
commit 46cd19ca85
2 changed files with 6 additions and 4 deletions

View file

@ -9,7 +9,7 @@ pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{}); const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{}); const optimize = b.standardOptimizeOption(.{});
const tree_sitter_dep = b.dependency("tree-sitter", .{ const tree_sitter_dep = b.dependency("tree_sitter", .{
.target = target, .target = target,
.optimize = optimize, .optimize = optimize,
}); });

View file

@ -1,9 +1,11 @@
.{ .{
.name = "flow-syntax", .name = .flow_syntax,
.version = "0.0.1", .version = "0.1.0",
.fingerprint = 0x3ba2584ea1cec85f,
.minimum_zig_version = "0.14.0-dev.3451+d8d2aa9af",
.dependencies = .{ .dependencies = .{
.@"tree-sitter" = .{ .tree_sitter = .{
.url = "https://github.com/neurocyte/tree-sitter/releases/download/master-86dd4d2536f2748c5b4ea0e1e70678039a569aac/source.tar.gz", .url = "https://github.com/neurocyte/tree-sitter/releases/download/master-86dd4d2536f2748c5b4ea0e1e70678039a569aac/source.tar.gz",
.hash = "1220e9fba96c468283129e977767472dee00b16f356e5912431cec8f1a009b6691a2", .hash = "1220e9fba96c468283129e977767472dee00b16f356e5912431cec8f1a009b6691a2",
}, },