Skip to content

Commit ebdf1bb

Browse files
committed
feat: update bindings
1 parent 0fe39be commit ebdf1bb

File tree

21 files changed

+276
-106
lines changed

21 files changed

+276
-106
lines changed

.gitattributes

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ src/parser.c linguist-generated
66
src/tree_sitter/* linguist-generated
77

88
# C bindings
9-
bindings/c/* linguist-generated
9+
bindings/c/** linguist-generated
1010
CMakeLists.txt linguist-generated
1111
Makefile linguist-generated
1212

@@ -35,3 +35,8 @@ go.sum linguist-generated
3535
bindings/swift/** linguist-generated
3636
Package.swift linguist-generated
3737
Package.resolved linguist-generated
38+
39+
# Zig bindings
40+
bindings/zig/* linguist-generated
41+
build.zig linguist-generated
42+
build.zig.zon linguist-generated

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
os: [ubuntu-latest, windows-latest, macos-14]
31+
os: [ubuntu-latest, windows-latest, macos-15]
3232
steps:
3333
- name: Checkout repository
3434
uses: actions/checkout@v4

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
# Rust artifacts
22
target/
3+
Cargo.lock
34

45
# Node artifacts
56
build/
67
prebuilds/
78
node_modules/
9+
package-lock.json
810

911
# Swift artifacts
1012
.build/
13+
Package.resolved
1114

1215
# Go artifacts
1316
_obj/
@@ -25,6 +28,13 @@ dist/
2528
*.dylib
2629
*.dll
2730
*.pc
31+
*.exp
32+
*.lib
33+
34+
# Zig artifacts
35+
.zig-cache/
36+
zig-cache/
37+
zig-out/
2838

2939
# Example dirs
3040
/examples/*/

CMakeLists.txt

Lines changed: 15 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.lock

Lines changed: 107 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 12 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Makefile

Lines changed: 8 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 9 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)