avatar_url
stringlengths
47
116
name
stringlengths
1
46
full_name
stringlengths
7
60
created_at
stringdate
2016-04-01 08:17:56
2025-05-20 11:38:17
description
stringlengths
0
387
default_branch
stringclasses
44 values
open_issues
int64
0
4.93k
stargazers_count
int64
0
78.2k
forks_count
int64
0
3.09k
watchers_count
int64
0
78.2k
tags_url
stringlengths
0
94
license
stringclasses
27 values
topics
listlengths
1
20
size
int64
0
4.82M
fork
bool
2 classes
updated_at
stringdate
2018-11-13 14:41:18
2025-05-22 08:23:54
has_build_zig
bool
2 classes
has_build_zig_zon
bool
2 classes
zig_minimum_version
stringclasses
50 values
repo_from
stringclasses
3 values
dependencies
listlengths
0
38
readme_content
stringlengths
0
437k
dependents
listlengths
0
21
https://avatars.githubusercontent.com/u/200686?v=4
zigualizer
deckarep/zigualizer
2024-11-17T05:34:00Z
Zigualizer: A music visualizer built with Zig, powered by the FFT algorithm.
main
0
29
1
29
https://api.github.com/repos/deckarep/zigualizer/tags
MIT
[ "fft", "music", "raylib", "spectrum-analyzer", "visualizer", "zig", "zig-package", "ziglang" ]
9,397
false
2025-04-03T15:55:29Z
true
true
0.13.0
github
[]
zigualizer Zigualizer: A music visualizer built with Zig, powered by the FFT algorithm. <a>Click here</a> for a demo on YouTube! Details This implementation was originally based on the <a>Musializer project by @Tsoding</a>. This version as it stands has been tested to work with Raylib 5.0. I have modified this ver...
[]
https://avatars.githubusercontent.com/u/7109515?v=4
zig-c-tutorial
ramonmeza/zig-c-tutorial
2024-11-07T04:32:55Z
Learn to create Zig bindings for C libraries!
main
0
29
2
29
https://api.github.com/repos/ramonmeza/zig-c-tutorial/tags
-
[ "binding", "c", "compiling", "linking", "shared", "static", "wrapper", "zig", "zig-program" ]
33
false
2025-05-13T08:40:02Z
true
true
unknown
github
[]
Understanding How Zig and C Interact A journey to understanding how Zig interacts with C and how someone not well-versed in C can leverage the power of third-party C libraries. What This Doesn't Cover <ul> <li>Using Zig in C</li> <li>Using C</li> <li>C at all</li> </ul> TOC <ul> <li><a>Utilizing This Project</a><ul...
[]
https://avatars.githubusercontent.com/u/32778608?v=4
zig-ebpf
anoushk1234/zig-ebpf
2024-08-21T06:43:36Z
Zig virtual machine for eBPF programs.
main
2
27
3
27
https://api.github.com/repos/anoushk1234/zig-ebpf/tags
Apache-2.0
[ "assembler", "bpf", "ebpf", "interpreter", "packet-filtering", "zig" ]
5,882
false
2025-04-13T06:26:56Z
true
true
unknown
github
[]
eBPF in Zig ⚡️ This is a wip implementation of eBPF in native Zig inspired by Quentin Monnet's <a>rbpf</a>. This is different from existing zig eBPF libraries as it implements the ISA natively in zig without depending on libbpf or any C modules. What works <br/><input type='checkbox' class='w-4 h-4 text-green-500 bg...
[]
https://avatars.githubusercontent.com/u/46653655?v=4
zdotenv
BitlyTwiser/zdotenv
2024-09-20T15:12:28Z
Zdotenv - A port of Godotenv for Zig
main
0
27
1
27
https://api.github.com/repos/BitlyTwiser/zdotenv/tags
-
[ "dotenv", "dotenv-parser", "zig", "ziglang" ]
145
false
2025-03-03T01:47:31Z
true
true
unknown
github
[]
Zdotenv is a simple .env parser and a port of godotenv and ruby dotenv, but with a smidge more simplicity. Usage: Add zdotenv to your zig project: <code>zig fetch --save https://github.com/BitlyTwiser/zdotenv/archive/refs/tags/v0.1.1.tar.gz</code> Add to build file: <code>const zdotenv = b.dependency("zdotenv...
[]
https://avatars.githubusercontent.com/u/113083639?v=4
zglfw
zig-gamedev/zglfw
2024-11-03T21:42:48Z
Zig build package and bindings for GLFW
main
5
26
23
26
https://api.github.com/repos/zig-gamedev/zglfw/tags
MIT
[ "bindings", "gamedev", "glfw", "zig" ]
447
false
2025-05-15T17:23:57Z
true
true
0.14.0
github
[ { "commit": "c0dbf11cdc17da5904ea8a17eadc54dee26567ec.tar.gz", "name": "system_sdk", "tar_url": "https://github.com/zig-gamedev/system_sdk/archive/c0dbf11cdc17da5904ea8a17eadc54dee26567ec.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/zig-gamedev/system_sdk" } ]
<a>zglfw</a> Zig build package and bindings for <a>GLFW 3.4</a> Getting started Example <code>build.zig</code>: ```zig pub fn build(b: *std.Build) void { const exe = b.addExecutable(.{ ... }); <code>const zglfw = b.dependency("zglfw", .{}); exe.root_module.addImport("zglfw", zglfw.module("root")); if (target.r...
[]
https://avatars.githubusercontent.com/u/101147447?v=4
zig_csv
matthewtolman/zig_csv
2024-10-18T21:11:44Z
CSV tools (writing, parsing) for Zig
main
0
24
3
24
https://api.github.com/repos/matthewtolman/zig_csv/tags
MIT
[ "csv", "zig", "zig-library" ]
200
false
2025-05-13T04:28:08Z
true
true
unknown
github
[]
ZCSV (Zig CSV) <ul> <li><a>Summary</a></li> <li><a>Installation</a></li> <li><a>Examples</a></li> <li><a>Writing CSV</a></li> <li><a>Reading a CSV</a></li> <li><a>Map Parser</a></li> <li><a>Column Parser</a></li> <li><a>Slice Parser (zero-allocation)</a></li> <li><a>Stream Parser (zero-allocation)</a></li> <li><a>Par...
[]
https://avatars.githubusercontent.com/u/46653655?v=4
snek
BitlyTwiser/snek
2024-09-21T17:52:35Z
Snek - A simple CLI parser to build CLI applications in Zig
main
0
25
1
25
https://api.github.com/repos/BitlyTwiser/snek/tags
MIT
[ "cli", "snek", "zig", "zig-library", "zig-package", "ziglang" ]
307
false
2025-01-20T21:29:01Z
true
true
unknown
github
[]
# 🐍snek🐍 A simple CLI parser building CLI applications in Zig # Contents [Usage](#usage) | [Building the CLI](#build-your-cli) | [Examples](#examples) | [Optionals](#optionals) | [Default Values](#default-values) | [Help Menu](#help-menu) | [What is not supported](#what-is-not-supported) Usage Add snek to...
[ "https://github.com/BitlyTwiser/nostro" ]
https://avatars.githubusercontent.com/u/188725936?v=4
discord.zig
discord-zig/discord.zig
2024-11-10T03:06:27Z
Mirror of Discord.zig, submit PRs and issues at https://git.yuzucchii.xyz/yuzucchii/discord.zig
master
0
23
5
23
https://api.github.com/repos/discord-zig/discord.zig/tags
-
[ "discord", "zig", "zig-library", "zig-package", "ziglang" ]
572
false
2025-05-21T23:35:45Z
true
true
0.11.0
github
[ { "commit": null, "name": "zlib", "tar_url": null, "type": "remote", "url": "https://git.yuzucchii.xyz/yuzucchii/zlib/archive/master.tar.gz" }, { "commit": "refs", "name": "websocket", "tar_url": "https://github.com/karlseguin/websocket.zig/archive/refs.tar.gz", "type": "remo...
Discord.zig A high-performance bleeding edge Discord library in Zig, featuring full API coverage, sharding support, and fine-tuned parsing * Sharding Support: Ideal for large bots, enabling distributed load handling. * 100% API Coverage &amp; Fully Typed: Offers complete access to Discord's API with strict typing for ...
[]
https://avatars.githubusercontent.com/u/113083639?v=4
zsdl
zig-gamedev/zsdl
2024-11-04T21:35:24Z
Zig bindings for SDL libs.
main
0
23
13
23
https://api.github.com/repos/zig-gamedev/zsdl/tags
MIT
[ "bindings", "gamedev", "sdl", "sdl2", "sdl2-image", "sdl2-ttf", "sdl3", "zig" ]
1,123
false
2025-05-08T22:03:45Z
true
true
unknown
github
[ { "commit": "e89207914a0f0163c0fb543da4f530f645ef5969.tar.gz", "name": "sdl3_prebuilt_macos", "tar_url": "https://github.com/zig-gamedev/sdl3-prebuilt-macos/archive/e89207914a0f0163c0fb543da4f530f645ef5969.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/zig-gamedev/sdl3-prebuilt-mac...
<a>zsdl</a> Zigified bindings for SDL libs. Work in progress. Getting started (SDL2) Example <code>build.zig</code>: ```zig pub fn build(b: *std.Build) !void { <code>const exe = b.addExecutable(.{ ... }); exe.linkLibC(); const zsdl = b.dependency("zsdl", .{}); exe.root_module.addImport("zsdl2", zsdl.module("zsdl...
[]
https://avatars.githubusercontent.com/u/95168615?v=4
clay-zig
raugl/clay-zig
2024-12-31T04:11:58Z
Zig bindings for the library clay: A high performance UI layout library in C.
master
1
22
4
22
https://api.github.com/repos/raugl/clay-zig/tags
MIT
[ "layout", "ui", "zig", "zig-binding", "zig-package" ]
161
false
2025-05-06T15:01:52Z
true
true
0.14.0
github
[ { "commit": "c9e1a63378ecfba448ecd42796838264b10adafb", "name": "clay_src", "tar_url": "https://github.com/nicbarker/clay/archive/c9e1a63378ecfba448ecd42796838264b10adafb.tar.gz", "type": "remote", "url": "https://github.com/nicbarker/clay" } ]
Zig Language Bindings <blockquote> <span class="bg-green-100 text-green-800 text-xs font-medium me-2 px-2.5 py-0.5 rounded dark:bg-green-900 dark:text-green-300">IMPORTANT</span> Zig 0.14.0 or higher is required. <span class="bg-blue-100 text-blue-800 text-xs font-medium me-2 px-2.5 py-0.5 rounded dark:bg-blue-900 da...
[]
https://avatars.githubusercontent.com/u/113083639?v=4
zflecs
zig-gamedev/zflecs
2024-11-03T21:30:16Z
Zig build package and bindings for https://github.com/SanderMertens/flecs
main
7
22
12
22
https://api.github.com/repos/zig-gamedev/zflecs/tags
MIT
[ "bindings", "ecs", "flecs", "gamedev", "zig" ]
935
false
2025-05-19T18:26:00Z
true
true
unknown
github
[]
<a>zflecs</a> Zig build package and bindings for <a>flecs</a> ECS v4.0.4 Getting started Example<code>build.zig</code>: ```zig pub fn build(b: *std.Build) void { const exe = b.addExecutable(.{ ... }); <code>const zflecs = b.dependency("zflecs", .{}); exe.root_module.addImport("zflecs", zflecs.module("root")); ...
[ "https://github.com/azillion/gravitas", "https://github.com/cyberegoorg/cetech1", "https://github.com/foxnne/aftersun", "https://github.com/zig-gamedev/zig-gamedev" ]
https://avatars.githubusercontent.com/u/113083639?v=4
ztracy
zig-gamedev/ztracy
2024-11-04T21:45:01Z
Performance markers for Tracy Frame Profiler in Zig.
main
3
21
10
21
https://api.github.com/repos/zig-gamedev/ztracy/tags
MIT
[ "bindings", "profiling", "tracy", "zig" ]
340
false
2025-05-13T04:19:43Z
true
true
unknown
github
[ { "commit": "c0dbf11cdc17da5904ea8a17eadc54dee26567ec.tar.gz", "name": "system_sdk", "tar_url": "https://github.com/zig-gamedev/system_sdk/archive/c0dbf11cdc17da5904ea8a17eadc54dee26567ec.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/zig-gamedev/system_sdk" } ]
<a>ztracy</a> Performance markers for <a>Tracy 0.11.1</a> in Zig Initial Zig bindings created by <a>Martin Wickham</a> Getting started Example <code>build.zig</code>: ```zig pub fn build(b: *std.Build) void { const options = .{ .enable_ztracy = b.option( bool, "enable_ztracy", ...
[ "https://github.com/Avokadoen/ecez", "https://github.com/Avokadoen/zig_vulkan", "https://github.com/cyberegoorg/cetech1", "https://github.com/jcalabro/uscope", "https://github.com/jrachele/zsynth", "https://github.com/nfginola/vk-zig", "https://github.com/zig-gamedev/zig-gamedev" ]
https://avatars.githubusercontent.com/u/113083639?v=4
zgpu
zig-gamedev/zgpu
2024-11-03T22:07:58Z
Cross-platform graphics lib for Zig built on top of Dawn native WebGPU implementation.
main
6
21
14
21
https://api.github.com/repos/zig-gamedev/zgpu/tags
MIT
[ "cross-platform", "dawn", "gamedev", "graphics", "native", "webgpu", "zig" ]
114
false
2025-05-16T07:50:25Z
true
true
0.14.0
github
[ { "commit": "99a4c74ec26b1f327209782565b4adaf1c1d610f.tar.gz", "name": "zpool", "tar_url": "https://github.com/zig-gamedev/zpool/archive/99a4c74ec26b1f327209782565b4adaf1c1d610f.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/zig-gamedev/zpool" }, { "commit": "c0dbf11cdc17da...
<a>zgpu</a> Cross-platform graphics lib for Zig built on top of <a>Dawn</a> native WebGPU implementation. Supports Windows 10+ (DirectX 12), macOS 12+ (Metal) and Linux (Vulkan). Features <ul> <li>Zero-overhead wgpu API bindings (<a>source code</a>)</li> <li>Uniform buffer pool for fast CPU-&gt;GPU transfers</li> <l...
[ "https://github.com/Senryoku/Deecy", "https://github.com/azillion/gravitas", "https://github.com/braheezy/zonk", "https://github.com/yusdacra/levent", "https://github.com/zig-gamedev/zgui", "https://github.com/zig-gamedev/zig-gamedev" ]
https://avatars.githubusercontent.com/u/20110944?v=4
misshod
ringtailsoftware/misshod
2024-12-28T02:56:39Z
MiSSHod is a minimal, experimental SSH client and server implemented as a library
main
0
20
1
20
https://api.github.com/repos/ringtailsoftware/misshod/tags
MIT
[ "ssh", "ssh-client", "ssh-server", "zig", "zig-package", "ziglang" ]
398
false
2025-05-14T04:35:00Z
true
true
0.14.0
github
[]
MiSSHod <em>misshod. (ˌmɪsˈʃɒd). adj. badly shod</em> About MiSSHod is a minimal, experimental SSH client and server implemented as a library. It has been tested with both <a>OpenSSH</a> and <a>Dropbear</a>. <strong>MiSSHod is not secure, it should not be used in real world systems</strong> It aims to be: <ul> <l...
[]
https://avatars.githubusercontent.com/u/10101283?v=4
bunv
aklinker1/bunv
2024-09-14T00:55:37Z
Corepack for Bun. PoC for implementing version management inside bun itself.
main
2
20
0
20
https://api.github.com/repos/aklinker1/bunv/tags
MIT
[ "bun", "zig" ]
11,691
false
2025-05-21T00:08:45Z
true
false
unknown
github
[]
Bunv <a></a> <a></a> <code>sh curl -sL https://raw.githubusercontent.com/aklinker1/bunv/main/install.sh | sh</code> Zero config wrapper around <a>Bun</a> that automatically downloads, manages, and executes the version of <code>bun</code> required by each of your projects. Basically <a><code>corepack</code></...
[]
https://avatars.githubusercontent.com/u/41784264?v=4
zig-lamp
jinzhongjia/zig-lamp
2025-02-06T05:05:07Z
Improve the zig experience in neovim
main
1
20
1
20
https://api.github.com/repos/jinzhongjia/zig-lamp/tags
-
[ "neovim", "neovim-lua-plugin", "neovim-plugin", "zig", "zig-library", "zig-package", "ziglang" ]
84
false
2025-05-17T17:30:39Z
true
true
0.14.0
github
[]
404
[]
https://avatars.githubusercontent.com/u/5316157?v=4
zircon
vascocosta/zircon
2024-09-18T07:40:40Z
A simple IRC library written in Zig.
main
0
19
0
19
https://api.github.com/repos/vascocosta/zircon/tags
MIT
[ "irc", "irc-protocol", "network", "tls", "zig", "zig-lib", "zig-library", "zig-package", "ziglang" ]
6,482
false
2025-05-02T12:58:50Z
true
true
0.14.0
github
[ { "commit": "1b0228642771ba3efddb92279294e734776191e9.tar.gz", "name": "tls", "tar_url": "https://github.com/ianic/tls.zig/archive/1b0228642771ba3efddb92279294e734776191e9.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/ianic/tls.zig" } ]
zircon A simple IRC library written in Zig. The <code>zircon</code> library is easy to use, allowing the creation of either general IRC clients or bots. One of its core concepts is the use of threads for better performance. However this is done behind the scenes in a simple way, with a dedicated thread to write messa...
[]
https://avatars.githubusercontent.com/u/47111091?v=4
writing-hypervisor-in-zig
smallkirby/writing-hypervisor-in-zig
2024-10-13T10:58:34Z
Writing Type-1 Hypervisor in Zig from scratch.
master
3
18
3
18
https://api.github.com/repos/smallkirby/writing-hypervisor-in-zig/tags
CC0-1.0
[ "hypervisor", "zig" ]
9,852
false
2025-04-07T12:43:25Z
false
false
unknown
github
[]
Writing Hypervisor in Zig Blog series where we write a hypervisor from scratch in Zig. Refer to <a>smallkirby/ymir</a>'s <code>whiz-*</code> branches for the reference implementation. Note that these branches might be not necessarily up-to-date. Please refer to <code>master</code> branch to check available fixes a...
[]
https://avatars.githubusercontent.com/u/14295318?v=4
ollama-zig
dravenk/ollama-zig
2025-01-07T11:18:13Z
Ollama Zig library
main
0
17
2
17
https://api.github.com/repos/dravenk/ollama-zig/tags
MIT
[ "deepseek", "llama", "llm", "llms", "ollama", "ollama-api", "ollama-client", "zig", "zig-library", "zig-package" ]
81
false
2025-05-20T00:03:18Z
true
true
unknown
github
[]
Ollama Zig Library The Ollama Zig library provides the easiest way to integrate Zig 0.14+ projects with <a>Ollama</a>. Prerequisites <ul> <li><a>Ollama</a> should be installed and running</li> <li>Pull a model to use with the library: <code>ollama pull &lt;model&gt;</code> e.g. <code>ollama pull llama3.2</code></li> ...
[]
https://avatars.githubusercontent.com/u/146810011?v=4
TerrainZigger
JosefAlbers/TerrainZigger
2024-08-10T05:36:35Z
TerrainZigger: A procedural 3D terrain generator and visualizer written in Zig using Raylib
main
0
17
1
17
https://api.github.com/repos/JosefAlbers/TerrainZigger/tags
MIT
[ "3d", "3d-engine", "3d-game", "3d-graphics", "3d-models", "procedural-generation", "procedural-terrain", "raylib", "raylib-zig", "wasm", "zig", "ziglang" ]
7,284
false
2025-05-20T22:58:52Z
false
false
unknown
github
[]
TerrainZigger TerrainZigger is a 3D terrain generator written in Zig using the Raylib library. It creates procedurally generated landscapes with dynamic water features, offering an interactive 3D visualization. Features <ul> <li>Procedural terrain generation using Fractional Brownian Motion (FBM)</li> <li>Real-time...
[]
https://avatars.githubusercontent.com/u/42583079?v=4
zig-prompter
GabrieleInvernizzi/zig-prompter
2024-12-11T20:13:44Z
zig-prompter is a lightweight and flexible library for building and managing interactive text-based prompts.
main
0
17
1
17
https://api.github.com/repos/GabrieleInvernizzi/zig-prompter/tags
MIT
[ "cli", "prompt", "terminal", "zig", "zig-package" ]
54
false
2025-04-18T13:50:42Z
true
true
unknown
github
[ { "commit": "b001662c929e2719ee24be585a3120640f946337", "name": "mibu", "tar_url": "https://github.com/xyaman/mibu/archive/b001662c929e2719ee24be585a3120640f946337.tar.gz", "type": "remote", "url": "https://github.com/xyaman/mibu" } ]
zig-prompter <strong>zig-prompter</strong> is a lightweight and flexible library for building and managing interactive text-based prompts in the <a>Zig programming language</a>. Whether you're creating command-line tools, text-based games, or utilities requiring user input, <strong>zig-prompter</strong> simplifies the...
[]
https://avatars.githubusercontent.com/u/124872?v=4
zig-hiae
jedisct1/zig-hiae
2025-02-06T00:31:55Z
HiAE - A High-Throughput Authenticated Encryption Algorithm for Cross-Platform Efficiency.
master
0
16
0
16
https://api.github.com/repos/jedisct1/zig-hiae/tags
-
[ "aead", "aes", "encryption", "hiae", "zig", "zig-package" ]
1,706
false
2025-05-14T19:19:55Z
true
true
0.14.0
github
[]
HiAE: A High-Throughput Authenticated Encryption Algorithm for Cross-Platform Efficiency A Zig implementation of HiAE, along with support for parallel variants. Benchmarks Encryption Zen4 | Variant | Throughput | | :------ | ---------: | | HiAE | 252.0 Gb/s | | HiAEX2 | 449.9 Gb/s | | HiAEX4 | 472.8 Gb/s | A...
[]
https://avatars.githubusercontent.com/u/35976402?v=4
fzwatch
freref/fzwatch
2024-11-03T22:33:03Z
A lightweight and cross-platform file watcher for your Zig projects
master
1
16
3
16
https://api.github.com/repos/freref/fzwatch/tags
MIT
[ "zig", "zig-package" ]
22
false
2025-05-14T22:41:55Z
true
true
unknown
github
[]
fzwatch A lightweight and cross-platform file watcher for your Zig projects. <blockquote> <span class="bg-blue-100 text-blue-800 text-xs font-medium me-2 px-2.5 py-0.5 rounded dark:bg-blue-900 dark:text-blue-300">NOTE</span> This project exists to support <a>fancy-cat</a> and has limited features. </blockquote> Inst...
[ "https://github.com/freref/fancy-cat" ]
https://avatars.githubusercontent.com/u/34311583?v=4
osdialog-zig
ttytm/osdialog-zig
2024-10-18T13:35:04Z
Cross-platform utility module for Zig to open native dialogs for the filesystem, message boxes, color-picking.
main
0
16
1
16
https://api.github.com/repos/ttytm/osdialog-zig/tags
ISC
[ "bindings", "color-picker", "dialog", "filesystem", "library", "linux", "macos", "module", "native", "windows", "zig", "zig-package", "ziglang" ]
11
false
2025-03-29T14:30:50Z
true
true
unknown
github
[ { "commit": "989a270.tar.gz", "name": "osdialog", "tar_url": "https://github.com/ttytm/osdialog/archive/989a270.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/ttytm/osdialog" } ]
osdialog-zig <a></a> <a></a> <a></a> Cross-platform utility module for Zig to open native dialogs for the filesystem, message boxes, color-picking. Quickstart <ul> <li><a>Installation</a></li> <li><a>Usage</a></li> <li><a>Example</a></li> <li><a>Credits</a></li> </ul> Showcase Linux Windows macOS ...
[]
https://avatars.githubusercontent.com/u/42317655?v=4
blackjack-zig
gdonald/blackjack-zig
2024-09-28T16:24:36Z
Console Blackjack written in Zig
main
0
16
1
16
https://api.github.com/repos/gdonald/blackjack-zig/tags
MIT
[ "21", "blackjack", "blackjack-game", "console", "zig", "zig-lang" ]
147
false
2025-04-15T11:57:19Z
false
false
unknown
github
[]
blackjack-zig Console Blackjack written in Zig Running <code>sh zig run main.zig</code> License <a></a> Other Blackjack Implementations: I've written Blackjack in <a>some other programming languages</a> too. Check them out!
[]
https://avatars.githubusercontent.com/u/8091245?v=4
zimq
uyha/zimq
2024-10-26T08:55:26Z
Zig binding for ZeroMQ
main
0
16
2
16
https://api.github.com/repos/uyha/zimq/tags
MIT
[ "bindings", "zeromq", "zig", "zig-package" ]
92
false
2025-05-10T10:53:40Z
true
true
0.14.0
github
[ { "commit": "34f7fa22022bed9e0e390ed3580a1c83ac4a2834.tar.gz", "name": "libzmq", "tar_url": "https://github.com/zeromq/libzmq/archive/34f7fa22022bed9e0e390ed3580a1c83ac4a2834.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/zeromq/libzmq" } ]
Zig binding for ZeroMQ <ul> <li><a>Zig binding for ZeroMQ</a></li> <li><a>How to use</a></li> <li><a>Example</a></li> <li><a>Binding map</a></li> </ul> A ZeroMQ wrapper that covers nearly 100% of ZeroMQ's API (skipped functions are to be deprecated or superseded). How to use <ol> <li>Run the following command to ...
[]
https://avatars.githubusercontent.com/u/17029738?v=4
pomodozig
jecaro/pomodozig
2025-01-03T13:01:17Z
Terminal based pomodoro timer
main
0
16
0
16
https://api.github.com/repos/jecaro/pomodozig/tags
-
[ "polybar", "pomodoro", "zig" ]
82
false
2025-03-17T11:26:16Z
true
true
unknown
github
[]
pomodozig <a></a> <code>pomodozig</code> is a simple terminal based pomodoro timer written in <code>Zig</code>. It can be used in the terminal or embedded in a status bar such as <code>polybar</code> as shown below. Installation A static binary is available in the <a>releases</a> page. It should work on...
[]
https://avatars.githubusercontent.com/u/12397229?v=4
zgroup
flowerinthenight/zgroup
2024-08-17T04:20:30Z
Cluster membership manager using the SWIM Protocol and Raft's leader election sub-protocol.
main
0
15
0
15
https://api.github.com/repos/flowerinthenight/zgroup/tags
MIT
[ "cluster-manager", "distributed-systems", "gossip", "gossip-protocol", "leader-election", "memberlist", "raft", "swim-protocol", "udp", "zig", "ziglang" ]
282
false
2025-03-30T14:29:04Z
true
true
unknown
github
[ { "commit": "v0.1.2.tar.gz", "name": "zbackoff", "tar_url": "https://github.com/flowerinthenight/zbackoff/archive/v0.1.2.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/flowerinthenight/zbackoff" } ]
<strong>NOTE</strong>: Still in alpha stage. APIs may change. <a></a> <a></a> (This repo is mirrored to <a>https://codeberg.org/flowerinthenight/zgroup</a>). Overview <strong>zgroup</strong> is a <a>Zig</a> library that can manage cluster membership and member failure detection. It uses a combination of <a>SWIM P...
[]
https://avatars.githubusercontent.com/u/9796623?v=4
zui
thienpow/zui
2024-11-24T07:18:50Z
fullstack mobile friendly web app built with jetzig framework -- ziglang
main
0
14
1
14
https://api.github.com/repos/thienpow/zui/tags
-
[ "boilerplate", "fullstack", "jetzig", "uikit", "zig" ]
309
false
2025-05-02T04:25:13Z
true
true
0.14.0-dev.3470+711b0fef5
github
[ { "commit": null, "name": "jetzig", "tar_url": null, "type": "relative", "url": "../jetzig-framework/jetzig/" } ]
zUI - A UI Kit for JetZig Framework 🚀 zUI is a modern and lightweight UI kit designed for the <a>JetZig</a> framework, leveraging the power and simplicity of Zig. zUI provides a collection of reusable components, styles, and utilities to speed up your development process and deliver beautiful, consistent user interfa...
[]
https://avatars.githubusercontent.com/u/206480?v=4
otp.zig
karlseguin/otp.zig
2024-11-08T01:47:11Z
An TOTP library for Zig
master
0
14
0
14
https://api.github.com/repos/karlseguin/otp.zig/tags
MIT
[ "zig", "zig-library", "zig-package" ]
13
false
2025-04-25T12:13:53Z
true
false
unknown
github
[]
OTP for Zig Currently only supports TOTP with SHA1 or SHA256. ```zig const std = @import("std"); const otp = @import("otp"); pub fn main() !void { // You would store secret in the DB with the user var secret: [20]u8 = undefined; otp.generateSecret(&amp;secret); <code>// base32 encode the secret // (for ...
[]
https://avatars.githubusercontent.com/u/116976902?v=4
zig-torch
kitajusSus/zig-torch
2025-01-04T21:14:45Z
implementation of zig-BUILD lib to python to make working with matrices faster, for fun lets see what is going to happen
main
0
14
0
14
https://api.github.com/repos/kitajusSus/zig-torch/tags
BSD-3-Clause
[ "i", "love", "python", "pytorch", "pytorch-implementation", "zig" ]
28,516
false
2025-05-20T17:14:06Z
true
true
unknown
github
[ { "commit": null, "name": "zigtorch", "tar_url": null, "type": "relative", "url": "zigtorch" } ]
important 27.02.2025 Ive changed few things, now I preffere to do firstyly something in zig and later on I will look for options to make bindings to python. mm.zig is main file with matrix multiplication function. the main problem is that i dont know how to build this, to make it work as a independent library in pyt...
[]
https://avatars.githubusercontent.com/u/126450436?v=4
Zeys
rullo24/Zeys
2025-01-26T03:46:25Z
A Windows-ready, Zig keyboard library for seamlessly interacting with low-level keyboard functionality through higher-level Zig functions.
main
0
14
0
14
https://api.github.com/repos/rullo24/Zeys/tags
MIT
[ "hotkeys", "input-injection", "key-events", "key-mapping", "keyboard", "keyboard-input", "zig", "zig-keyboard", "ziglang" ]
46
false
2025-02-09T15:04:40Z
true
true
unknown
github
[]
Zeys - A Zig Keyboard Module Zeys provides a set of functions for simulating keyboard events, handling hotkeys, and interacting with the Windows API to manage keyboard inputs. It supports binding, unbinding, and triggering hotkeys, simulating key presses and releases, checking key states, and more. This module is inte...
[]
https://avatars.githubusercontent.com/u/20110944?v=4
zeptolibc
ringtailsoftware/zeptolibc
2024-12-05T11:55:40Z
Some basic libc functions for working with C code in Zig
main
0
13
0
13
https://api.github.com/repos/ringtailsoftware/zeptolibc/tags
-
[ "libc", "zig", "zig-package" ]
54
false
2025-05-20T14:16:32Z
true
true
unknown
github
[]
ZeptoLibC A few of the most essential libc functions needed when working with C code in Zig. Much of the code is taken from <a>ziglibc</a>. ZeptoLibC provides, among others: <ul> <li><code>malloc()</code>, <code>calloc()</code>, <code>realloc()</code>, <code>free()</code></li> <li><code>printf()</code>, <code>fprint...
[ "https://github.com/ringtailsoftware/zig-wasm-audio-framebuffer" ]
https://avatars.githubusercontent.com/u/94393292?v=4
zigCraft
SnoopyPlayz/zigCraft
2025-01-07T09:08:51Z
minecraft made in zig with raylib
main
0
13
2
13
https://api.github.com/repos/SnoopyPlayz/zigCraft/tags
MIT
[ "raylib", "zig" ]
475
false
2025-04-02T00:58:09Z
true
true
0.14.0
github
[ { "commit": "b684c3c46c2c3e7e1ba69c068bdc34e873b3e7bc", "name": "raylib_zig", "tar_url": "https://github.com/SnoopyPlayz/raylib-zig-fork/archive/b684c3c46c2c3e7e1ba69c068bdc34e873b3e7bc.tar.gz", "type": "remote", "url": "https://github.com/SnoopyPlayz/raylib-zig-fork" } ]
zigCraft minecraft made in zig with <a>raylib</a>. zig version: <code>1.14.0</code> example Image: building install zig version <code>1.14.0</code> <code>git clone https://github.com/SnoopyPlayz/zigCraft.git cd zigCraft zig build run -Doptimize=ReleaseFast --release=fast</code> controls 0 - 9 - select block r...
[]
https://avatars.githubusercontent.com/u/46653655?v=4
zinger
BitlyTwiser/zinger
2024-12-01T01:18:42Z
Simple HTTP request library for Zig applications
main
0
13
1
13
https://api.github.com/repos/BitlyTwiser/zinger/tags
Apache-2.0
[ "http", "http-requests", "zig", "zig-package", "ziglang" ]
231
false
2025-04-17T10:53:37Z
true
true
unknown
github
[]
# Zinger A Simple HTTP request library # Contents [Usage](#usage) | [Make Requests](#make-requests) | [GET](#get) | [POST](#post) | [PUT and DELETE](#put-and-delete) | [Supported Requests](#supports) | Usage Add Zinger to your Zig project with Zon: <code>sh zig fetch --save https://github.com/BitlyTwiser/z...
[]
https://avatars.githubusercontent.com/u/16590917?v=4
zigscient-next
llogick/zigscient-next
2025-01-26T06:32:30Z
Using the Zig Compiler's Incremental Semantic Analysis as a Foundation for Near-instant Code Feedback via LSP
dev
3
13
0
13
https://api.github.com/repos/llogick/zigscient-next/tags
NOASSERTION
[ "language-server", "language-server-protocol", "zig", "zig-auto-complete", "zig-language", "zig-language-server" ]
297,272
false
2025-04-04T22:34:19Z
true
true
0.14.0
github
[ { "commit": null, "name": "standalone_test_cases", "tar_url": null, "type": "relative", "url": "test/standalone" }, { "commit": null, "name": "link_test_cases", "tar_url": null, "type": "relative", "url": "test/link" }, { "commit": "aa24df42183ad415d10bc0a33e6238c...
Using the Zig Compiler's Incremental Semantic Analysis as a Foundation for Near-instant Code Feedback via LSP <strong>Status</strong> This project is a proof-of-concept/viability effort. The intention is to demonstrate the potential of using Zig's incremental semantic analysis for near-instant code feedback via LSP...
[]
https://avatars.githubusercontent.com/u/23142073?v=4
zsynth
jrachele/zsynth
2024-12-07T00:09:20Z
Synthesizer plugin written in Zig
main
0
12
0
12
https://api.github.com/repos/jrachele/zsynth/tags
MIT
[ "audio", "bitwig", "clap", "dsp", "plugin", "synthesizer", "vst", "zig" ]
727
false
2025-04-05T11:09:41Z
true
true
unknown
github
[ { "commit": "7bc0fd7.tar.gz", "name": "regex", "tar_url": "https://github.com/tiehuis/zig-regex/archive/7bc0fd7.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/tiehuis/zig-regex" }, { "commit": null, "name": "clap-bindings", "tar_url": null, "type": "remote", ...
ZSynth is a light-weight digital synthesizer audio plugin written in <a>Zig</a>. It uses Zig-friendly <a>CLAP</a> <a>bindings</a>, and leverages ImGui to render the plugin GUI. Features <ul> <li>Very lightweight CPU load</li> <li>2 oscillators powered by anti-aliased wave tables: Sine, Saw, Triangle, Square</li> <li...
[]
https://avatars.githubusercontent.com/u/192897928?v=4
zig-luajit-build
sackosoft/zig-luajit-build
2025-01-12T21:13:06Z
A package to compile LuaJIT using the Zig toolchain. Install to access the LuaJIT C API. For Zig API see https://github.com/sackosoft/zig-luajit
main
1
12
4
12
https://api.github.com/repos/sackosoft/zig-luajit-build/tags
MIT
[ "luajit", "zig", "zig-package" ]
59
false
2025-05-18T02:02:20Z
true
true
unknown
github
[ { "commit": "538a82133ad6fddfd0ca64de167c4aca3bc1a2da", "name": "upstream", "tar_url": "https://github.com/LuaJIT/LuaJIT/archive/538a82133ad6fddfd0ca64de167c4aca3bc1a2da.tar.gz", "type": "remote", "url": "https://github.com/LuaJIT/LuaJIT" } ]
# zig-luajit-build Used to compile and link the native [LuaJIT][LUAJIT] C API into Zig ⚡ applications. ![Ubuntu Build Status Badge](https://img.shields.io/github/actions/workflow/status/sackosoft/zig-luajit-build/build-ubuntu.yml?label=Linux%20Build) ![Windows Build Status Badge](https://img.shields.io/github/actio...
[]
https://avatars.githubusercontent.com/u/30970706?v=4
mpack-zig
theseyan/mpack-zig
2024-12-07T06:34:07Z
MessagePack bindings for Zig / msgpack.org[Zig]
main
0
12
0
12
https://api.github.com/repos/theseyan/mpack-zig/tags
MIT
[ "messagepack", "mpack", "zig", "zig-package" ]
132
false
2025-02-15T12:00:00Z
true
true
0.13.0
github
[ { "commit": "master", "name": "mpack", "tar_url": "https://github.com/ludocode/mpack/releases/download/v1.1.1/mpack-amalgamation-1.1.1.tar.gz/archive/master.tar.gz", "type": "remote", "url": "https://github.com/ludocode/mpack/releases/download/v1.1.1/mpack-amalgamation-1.1.1.tar.gz" }, { ...
MessagePack for Zig High-level APIs for <a>MPack</a>, a fast compliant encoder/decoder for the <a>MessagePack</a> binary format. Built and tested with Zig version <code>0.13.0</code>. <blockquote> <ul> <li>Simple and easy to use</li> <li>Secure against untrusted data</li> <li>Lightweight, suitable for embedded</li> <...
[]
https://avatars.githubusercontent.com/u/26848022?v=4
fsharp-native-dll
deadblackclover/fsharp-native-dll
2025-02-02T06:53:32Z
Example of using native libraries in F#
master
0
11
0
11
https://api.github.com/repos/deadblackclover/fsharp-native-dll/tags
MIT
[ "dll", "fsharp", "native", "rust", "zig" ]
13
false
2025-03-26T17:00:01Z
false
false
unknown
github
[]
fsharp-native-dll Example of using native libraries in F# Build native_rust <code>sh cargo build</code> Build native_zig Use version 0.13.0 to compile the library <code>sh zig build</code> Build native_fsharp <code>sh dotnet publish -c Release -r &lt;RUNTIME_IDENTIFIER&gt; --self-contained</code>
[]
https://avatars.githubusercontent.com/u/113083639?v=4
zwindows
zig-gamedev/zwindows
2024-08-10T13:23:05Z
Windows development SDK for Zig game developers.
main
1
11
4
11
https://api.github.com/repos/zig-gamedev/zwindows/tags
MIT
[ "bindings", "gamedev", "win32", "zig" ]
356
false
2025-04-22T18:55:37Z
true
true
0.14.0
github
[]
<a>zwindows</a> Windows development SDK for Zig game developers. <ul> <li>Vendored DirectX Compiler binaries for Windows and Linux</li> <li>Vendored DirectX and DirectML runtime libraries</li> <li>Lightweight partial bindings for:<ul> <li>Win32 API (extends std.os.windows)</li> <li>Direct3D 12</li> <li>Direct3D 11</li...
[ "https://github.com/zig-gamedev/zig-gamedev", "https://github.com/zig-gamedev/zopenvr" ]
https://avatars.githubusercontent.com/u/36760800?v=4
bpe.zig
alvarobartt/bpe.zig
2025-01-22T12:03:53Z
Minimal implementation of a Byte Pair Encoding (BPE) tokenizer in Zig
main
0
11
0
11
https://api.github.com/repos/alvarobartt/bpe.zig/tags
Apache-2.0
[ "bpe", "gpt-2", "tokenizer", "zig" ]
129
false
2025-04-07T14:11:25Z
true
true
unknown
github
[]
bpe.zig <code>bpe.zig</code> is a minimal implementation of a Byte Pair Encoding (BPE) tokenizer in Zig. <blockquote> <span class="bg-yellow-100 text-yellow-800 text-xs font-medium me-2 px-2.5 py-0.5 rounded dark:bg-yellow-900 dark:text-yellow-300">WARNING</span> This implementation is currently an educational projec...
[]
https://avatars.githubusercontent.com/u/182033383?v=4
zig-cheatsheet
grokkhub/zig-cheatsheet
2024-09-18T23:38:14Z
An overview of Zig syntax and design
main
1
11
1
11
https://api.github.com/repos/grokkhub/zig-cheatsheet/tags
-
[ "zig" ]
50
false
2025-05-06T14:45:47Z
false
false
unknown
github
[]
Zig Cheat Sheet Table of Contents <ol> <li><a>Introduction</a></li> <li><a>Installation</a></li> <li><a>Hello, World!</a></li> <li><a>Basic Syntax</a></li> <li><a>Variables and Data Types</a></li> <li><a>Control Flow</a></li> <li><a>Functions</a></li> <li><a>Error Handling</a></li> <li><a>Memory Management</a></li> <l...
[]
https://avatars.githubusercontent.com/u/8823448?v=4
jaysan
lawrence-laz/jaysan
2024-09-18T23:20:56Z
A fast json serializer
main
0
11
0
11
https://api.github.com/repos/lawrence-laz/jaysan/tags
MIT
[ "json", "json-serializer", "zig", "zig-package" ]
26
false
2025-01-02T16:43:37Z
true
true
unknown
github
[]
Jayさん Jaysan is a fast json library written in Zig. Currently supports serialization only. ```zig var gpa = std.heap.GeneralPurposeAllocator(.{}){}; const Foo = struct { foo: i32, bar: []const u8, }; const string = try json.stringifyAlloc( gpa.allocator(), Foo{ .foo = 123, ...
[]
https://avatars.githubusercontent.com/u/56497124?v=4
lizpack
kj4tmp/lizpack
2024-12-19T07:19:26Z
A MessagePack Library for Zig
main
0
11
0
11
https://api.github.com/repos/kj4tmp/lizpack/tags
MIT
[ "zig", "zig-package" ]
102
false
2025-04-19T09:57:56Z
true
true
0.14.0
github
[]
lizpack A MessagePack Library for Zig <ol> <li>Zero allocations.</li> <li>Zero encoding errors.</li> <li>Simple control flow.</li> <li>All messages validated for you.</li> </ol> A simple API: <code>zig lizpack.encode(...) lizpack.encodeBounded(...) lizpack.encodeAlloc(...) lizpack.decode(...) lizpack.decodeAlloc(....
[]
https://avatars.githubusercontent.com/u/113083639?v=4
zmesh
zig-gamedev/zmesh
2024-11-03T23:16:59Z
Zig library for loading, generating, processing and optimising triangle meshes.
main
1
11
8
11
https://api.github.com/repos/zig-gamedev/zmesh/tags
MIT
[ "3d", "gamedev", "mesh-generation", "mesh-optimization", "mesh-processing", "zig" ]
594
false
2025-05-06T22:04:43Z
true
true
unknown
github
[]
<a>zmesh</a> Zig library for loading, generating, processing and optimising triangle meshes. Under the hood this library uses below C/C++ libraries: <ul> <li><a>par shapes</a></li> <li><a>meshoptimizer</a></li> <li><a>cgltf</a></li> </ul> All memory allocations go through user-supplied, Zig allocator. As an examp...
[ "https://github.com/zig-gamedev/zig-gamedev" ]
https://avatars.githubusercontent.com/u/231785?v=4
ztap
mnemnion/ztap
2024-09-12T01:42:44Z
ZTAP: TAP producer for zig build test
trunk
0
11
1
11
https://api.github.com/repos/mnemnion/ztap/tags
MIT
[ "tap", "testing", "zig", "zig-package" ]
35
false
2025-05-19T19:54:40Z
true
true
unknown
github
[]
ZTAP The <a>Test Anything Protocol</a> is a simple, venerable, and widely-used format for reporting the output of tests. ZTAP is a Zig library for running and reporting tests in the TAP 14 format. Compatibility ZTAP requires Zig 0.14. Use This can be used as the main unit testing step, or as a custom step. Instru...
[ "https://github.com/mnemnion/runeset" ]
https://avatars.githubusercontent.com/u/24697112?v=4
example-multi-language
goreleaser/example-multi-language
2024-12-15T02:14:04Z
Example project using all 3 currently available builders: Go, Rust, and Zig
main
0
11
0
11
https://api.github.com/repos/goreleaser/example-multi-language/tags
MIT
[ "cargo", "golang", "goreleaser", "rust", "zig" ]
6
false
2024-12-19T02:14:10Z
false
false
unknown
github
[]
example-multi-language This example uses all 3 currently available builders: Go, Rust, and Zig.
[]
https://avatars.githubusercontent.com/u/87213748?v=4
terraria-classic
JamzOJamz/terraria-classic
2024-12-09T02:31:38Z
A WIP remake of Terraria 1.0
main
0
11
0
11
https://api.github.com/repos/JamzOJamz/terraria-classic/tags
-
[ "fanmade-remake", "raylib", "remake", "terraria", "zig", "ziglang" ]
64,302
false
2025-02-06T09:08:24Z
true
true
unknown
github
[ { "commit": null, "name": "raylib-zig", "tar_url": null, "type": "relative", "url": "libs/raylib-zig" }, { "commit": null, "name": "zig-ecs", "tar_url": null, "type": "relative", "url": "libs/zig-ecs" }, { "commit": null, "name": "zigwin32", "tar_url": nul...
Terraria Classic A work-in-progress remake of Terraria 1.0, written in <a>Zig</a> and using <a>raylib</a> for rendering. Web Demo There is a web demo playable <a>here.</a>
[]
https://avatars.githubusercontent.com/u/113083639?v=4
zjobs
zig-gamedev/zjobs
2024-11-03T23:03:29Z
Generic job queue implementation for Zig.
main
2
10
3
10
https://api.github.com/repos/zig-gamedev/zjobs/tags
MIT
[ "gamedev", "job-queue", "multithreading", "zig" ]
15
false
2025-05-06T22:04:42Z
true
true
unknown
github
[]
<a>zjobs</a> Generic job queue implementation for Zig. In order to take full advantage of modern multicore CPUs, it is necessary to run much of your application logic on separate threads. This <code>JobQueue</code> provides a simple API to schedule "jobs" to run on a pool of threads, typically as many threads as you...
[ "https://github.com/azillion/gravitas", "https://github.com/zig-gamedev/zig-gamedev" ]
https://avatars.githubusercontent.com/u/20110944?v=4
zoridor
ringtailsoftware/zoridor
2024-11-24T08:30:36Z
A Quoridor game for terminal and web
main
0
10
1
10
https://api.github.com/repos/ringtailsoftware/zoridor/tags
MIT
[ "game", "quoridor", "zig", "zig-package" ]
1,709
false
2025-02-15T10:35:46Z
true
true
unknown
github
[ { "commit": "b001662c929e2719ee24be585a3120640f946337", "name": "mibu", "tar_url": "https://github.com/xyaman/mibu/archive/b001662c929e2719ee24be585a3120640f946337.tar.gz", "type": "remote", "url": "https://github.com/xyaman/mibu" }, { "commit": "c2e3122d5dd6192513ba590f229dbc535110efb8"...
Zoridor A terminal and web version of the <a>Quoridor</a> board game <a>WASM4</a> version on <a>wasm4 branch</a>. Play on the web at https://ringtailsoftware.github.io/zoridor/ Or play the WASM4 cart at https://ringtailsoftware.github.io/zoridor/cart.html Quoridor tutorials: <ul> <li>https://www.youtube.com/watc...
[]
https://avatars.githubusercontent.com/u/104849437?v=4
uuid.zig
octopus-foundation/uuid.zig
2024-11-15T14:06:00Z
UUID v4 implementation in pure Zig. No allocations
master
1
10
0
10
https://api.github.com/repos/octopus-foundation/uuid.zig/tags
MIT
[ "zig", "zig-package" ]
4
false
2025-04-29T07:52:31Z
true
true
0.14.0
github
[]
UUID v4 RFC 4122 compliant UUID v4 implementation in Zig. Features <ul> <li>Zero dependencies</li> <li>Generate random UUIDs (v4)</li> <li>Parse from string/bytes</li> <li>Format to string/bytes</li> <li>No allocations</li> <li>Supports cryptographic RNG</li> <li>Tested on Zig 0.14.0-dev</li> </ul> Install <code>ba...
[]
https://avatars.githubusercontent.com/u/146390816?v=4
wayland
allyourcodebase/wayland
2024-12-18T19:07:19Z
wayland ported to the zig build system
master
0
10
1
10
https://api.github.com/repos/allyourcodebase/wayland/tags
MIT
[ "zig", "zig-package" ]
24
false
2025-05-20T23:58:32Z
true
true
0.14.0
github
[ { "commit": null, "name": "wayland", "tar_url": null, "type": "remote", "url": "git+https://gitlab.freedesktop.org/wayland/wayland.git?ref=1.23.1#a9fec8dd65977c57f4039ced34327204d9b9d779" }, { "commit": "master", "name": "libffi", "tar_url": "https://github.com/vezel-dev/libffi/a...
<a></a> Wayland This is <a>Wayland</a>, packaged for <a>Zig</a>. Installation First, update your <code>build.zig.zon</code>: ``` Initialize a <code>zig build</code> project if you haven't already zig init zig fetch --save git+https://github.com/allyourcodebase/wayland.git#1.23.1-3 ``` You can then import <code>...
[ "https://github.com/Games-by-Mason/glfw-zig", "https://github.com/allyourcodebase/tracy", "https://github.com/allyourcodebase/wayland", "https://github.com/ifreund/waylock", "https://github.com/nmeum/creek", "https://github.com/swaywm/zig-wlroots" ]
https://avatars.githubusercontent.com/u/113565070?v=4
ZWL
Darkfllame/ZWL
2024-08-13T20:24:53Z
Zig cross platform Windowing Library
main
1
10
0
10
https://api.github.com/repos/Darkfllame/ZWL/tags
MIT
[ "cross-platform", "opengl", "zig" ]
385
false
2025-03-05T03:26:55Z
true
true
unknown
github
[ { "commit": "3f7d62dcab0d59242f0a49092687cf2ad3a9b308.tar.gz", "name": "zgll", "tar_url": "https://github.com/Darkfllame/zgll/archive/3f7d62dcab0d59242f0a49092687cf2ad3a9b308.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/Darkfllame/zgll" } ]
Zig Windowing Library ZWL (Zig Windowing Library, /zwil/) is a cross-platform zig windowing library with loop-based event polling (like SDL) and aimed to be lightweight thanks to zig's conditional compilation/lazy evaluation. Current state: Win32 <br/><input type='checkbox' class='w-4 h-4 text-green-500 bg-g...
[]
https://avatars.githubusercontent.com/u/45130910?v=4
zpotify
Ratakor/zpotify
2024-09-05T17:37:00Z
A CLI for Spotify
master
0
10
0
10
https://api.github.com/repos/Ratakor/zpotify/tags
GPL-3.0
[ "cli", "spotify", "tui", "zig" ]
363
false
2025-01-08T20:06:28Z
true
true
0.13.0
github
[ { "commit": null, "name": "zig-spoon", "tar_url": null, "type": "relative", "url": "vendor/zig-spoon" } ]
zpotify zpotify is a CLI for controlling Spotify playback and much more! https://github.com/user-attachments/assets/5a97453a-db8a-4689-b2d0-ab1f2009fcb0 Installation <a>AUR</a> Using your favorite AUR helper or manually: <code>git clone https://aur.archlinux.org/zpotify cd zpotify makepkg -si</code> Building Req...
[]
https://avatars.githubusercontent.com/u/5521491?v=4
fizz
wmedrano/fizz
2024-08-11T17:13:36Z
Lispy interpreter for Zig
main
1
10
0
10
https://api.github.com/repos/wmedrano/fizz/tags
MIT
[ "lisp", "lisp-interpreter", "zig", "ziglang" ]
164
false
2025-03-30T00:21:08Z
true
true
unknown
github
[]
site/index.md
[]
https://avatars.githubusercontent.com/u/60558183?v=4
abyssbook
aldrin-labs/abyssbook
2025-01-14T19:30:17Z
first zig orderbook in history // benchmark prolly wrong its ai estimate
main
1
10
2
10
https://api.github.com/repos/aldrin-labs/abyssbook/tags
NOASSERTION
[ "clob", "dex", "orderbook", "serum", "solana", "svm", "zig", "zig-orderbook" ]
127
false
2025-04-04T15:12:18Z
true
false
unknown
github
[]
🌊 AbyssBook: Next-Generation DEX Infrastructure <a></a> <a></a> <a></a> 🚀 Revolutionary Performance AbyssBook represents a quantum leap in DEX infrastructure, achieving performance metrics previously thought impossible in decentralized systems: | Metric | AbyssBook | Traditional DEX | CEX | |--------|-----------|...
[]
https://avatars.githubusercontent.com/u/92009321?v=4
chsim
basilysf1709/chsim
2024-08-14T19:24:11Z
Consistent Hashing Ring Simulator made using raylib
main
0
10
0
10
https://api.github.com/repos/basilysf1709/chsim/tags
MIT
[ "raylib", "zig" ]
14
false
2025-01-27T22:15:39Z
true
false
unknown
github
[]
Consistent Hashing Simulator (chsim) This project is a simulation of consistent hashing using Zig and Raylib. The application visualizes how a hash ring distributes nodes and routes requests to these nodes based on hash values. It demonstrates the addition and removal of nodes in the ring and shows how requests are ro...
[]
https://avatars.githubusercontent.com/u/66679118?v=4
reticulum-zig
ion232/reticulum-zig
2024-12-09T12:35:44Z
An implementation of Reticulum in Zig for operating systems and embedded devices
main
0
10
1
10
https://api.github.com/repos/ion232/reticulum-zig/tags
Apache-2.0
[ "microzig", "reticulum", "zig" ]
163
false
2025-01-28T07:58:18Z
true
true
0.13.0
github
[]
Overview An implementation of <a>Reticulum</a> in <a>Zig</a> targeting operating systems and embedded devices. Roadmap <ul> <li>Implement core transport.</li> <li>Test core transport.</li> <li>Implement a transport node pico build.</li> <li>Test transport node pico build.</li> <li>Implement app.</li> <li>Test app.</l...
[]
https://avatars.githubusercontent.com/u/193787365?v=4
zindexer
openSVM/zindexer
2025-01-28T01:25:04Z
solana indexer for clickhouse in zig
main
4
10
2
10
https://api.github.com/repos/openSVM/zindexer/tags
NOASSERTION
[ "zig", "zig-package", "ziglana", "ziglang" ]
156
false
2025-04-03T23:28:14Z
true
true
0.14.0
github
[ { "commit": "refs", "name": "c-questdb-client", "tar_url": "https://github.com/openSVM/c-questdb-client/archive/refs.tar.gz", "type": "remote", "url": "https://github.com/openSVM/c-questdb-client" } ]
ZIndexer - Multi-Network SVM Indexer ZIndexer is a high-performance indexer for Solana Virtual Machine (SVM) networks, capable of subscribing to and indexing data from multiple networks simultaneously. Features <ul> <li><strong>Multi-Network Support</strong>: Index multiple SVM networks (mainnet, devnet, testnet, loc...
[]
https://avatars.githubusercontent.com/u/137664746?v=4
zeon
n0thhhing/zeon
2024-12-06T16:40:04Z
ARM/ARM64 Neon intrinsics implemented in zig
main
0
9
0
9
https://api.github.com/repos/n0thhhing/zeon/tags
MIT
[ "arm", "arm64", "assembly", "implementation", "inline-assembly", "intrinsics", "llvm", "neon", "pure-zig", "simd", "vectors", "zig", "ziglang" ]
457
false
2025-03-26T06:23:18Z
true
true
unknown
github
[]
Zeon ARM/ARM64 Neon intrinsics implemented in pure zig as well as in assembly! Overview Zeon aims to provide high-performance <code>Neon</code> intrinsics for <code>ARM</code> and <code>ARM64</code> architectures, implemented in both pure Zig and inline assembly. This project prioritizes portability, performance, an...
[]
https://avatars.githubusercontent.com/u/7820420?v=4
zig-pico-cmake
flyfish30/zig-pico-cmake
2025-01-19T12:50:07Z
A pico_sdk zig package that build zig projects by use the Raspberry PI Pico SDK
main
0
9
1
9
https://api.github.com/repos/flyfish30/zig-pico-cmake/tags
MIT
[ "pico-sdk", "zig", "zig-package" ]
45
true
2025-03-09T05:23:07Z
true
true
unknown
github
[]
404
[]
https://avatars.githubusercontent.com/u/179981696?v=4
clickhouse-zig
ziglana/clickhouse-zig
2024-10-31T10:29:33Z
blazigly fast Clickhouse client ⚡️
main
0
9
0
9
https://api.github.com/repos/ziglana/clickhouse-zig/tags
Unlicense
[ "blazigly", "clickhouse", "clickstream", "time-series", "zig", "ziglang" ]
57
true
2025-03-30T00:53:17Z
true
true
unknown
github
[]
clickhouse-zig clickhouse client for zig Features <ul> <li>Native ClickHouse protocol implementation</li> <li>High performance with zero allocations in hot paths</li> <li>Support for complex ClickHouse types</li> <li>Connection pooling</li> <li>Async query support</li> <li>Compression (LZ4, ZSTD)</li> <li>Bulk inser...
[]
https://avatars.githubusercontent.com/u/113083639?v=4
zopengl
zig-gamedev/zopengl
2024-11-03T23:34:16Z
OpenGL loader and bindings for Zig.
main
3
9
11
9
https://api.github.com/repos/zig-gamedev/zopengl/tags
MIT
[ "gamedev", "opengl", "opengl-bindings", "opengl-loader", "opengl-wrapper", "opengles", "zig" ]
208
false
2025-05-13T21:36:50Z
true
true
unknown
github
[]
<a>zopengl</a> OpenGL loader, bindings and optional wrapper for Zig. Supports: * OpenGL Core Profile up to version 4.3 * OpenGL ES up to version 2.0 Getting started Example <code>build.zig</code>: ```zig pub fn build(b: *std.Build) void { const exe = b.addExecutable(.{ ... }); <code>const zopengl = b.depe...
[ "https://github.com/Aryvyo/zigClipboard", "https://github.com/jrachele/zsynth", "https://github.com/zig-gamedev/zig-gamedev" ]
https://avatars.githubusercontent.com/u/132974257?v=4
zephyrus
optimism-java/zephyrus
2024-09-05T03:34:14Z
Ethereum consensus client in Zig
main
13
9
2
9
https://api.github.com/repos/optimism-java/zephyrus/tags
MIT
[ "eth2", "eth2-beacon-chain", "eth2-clients", "ethereum", "zig", "ziglang" ]
349
false
2025-03-31T02:10:51Z
true
true
unknown
github
[]
zephyrus This repo is development with zig, zig is a coding language for more <a>info</a> for basic coding <a>guide</a> The current version being used in development is <code>0.14.0-dev.2079+ba2d00663</code>. You may use <a><code>zigup</code></a> to download and use this specific version. Build <code>bash git clone...
[]
https://avatars.githubusercontent.com/u/146390816?v=4
lz4
allyourcodebase/lz4
2024-08-15T11:54:47Z
lz4 ported to the zig build system
master
0
9
1
9
https://api.github.com/repos/allyourcodebase/lz4/tags
MIT
[ "zig", "zig-package" ]
12
false
2025-05-03T17:34:43Z
true
true
0.14.0
github
[ { "commit": "master", "name": "lz4", "tar_url": "https://github.com/lz4/lz4/archive/master.tar.gz", "type": "remote", "url": "https://github.com/lz4/lz4" } ]
<a></a> lz4 This is <a>lz4</a>, packaged for <a>Zig</a>. Installation First, update your <code>build.zig.zon</code>: ``` Initialize a <code>zig build</code> project if you haven't already zig init zig fetch --save git+https://github.com/allyourcodebase/lz4.git#1.10.0-5 ``` You can then import <code>lz4</code> i...
[ "https://github.com/Scythe-Technology/Zune", "https://github.com/allyourcodebase/lz4", "https://github.com/mgord9518/squashfuse-zig", "https://github.com/vrischmann/zig-cassandra" ]
https://avatars.githubusercontent.com/u/98805?v=4
skia-zig
basdp/skia-zig
2024-10-08T13:53:02Z
Zig bindings for the Skia 2D Graphics Library
main
2
9
1
9
https://api.github.com/repos/basdp/skia-zig/tags
MIT
[ "skia", "zig", "zig-package" ]
8,364
false
2025-05-14T14:00:53Z
true
true
unknown
github
[]
Skia Zig Bindings <a></a> Zig bindings for the famous <a>Skia 2D Graphics Library</a>. Overview This repository provides Zig bindings to the Skia C API. It builds Skia for multiple platforms and exposes the raw C headers to be used directly in Zig projects. <strong>No wrappers</strong> are provided—...
[]
https://avatars.githubusercontent.com/u/187213054?v=4
image
refilelabs/image
2024-11-05T23:38:39Z
Image layer repository holding all image tooling.
main
2
8
0
8
https://api.github.com/repos/refilelabs/image/tags
-
[ "image-processing", "rust", "wasm", "zig" ]
237
false
2025-03-12T23:28:26Z
false
false
unknown
github
[]
refilelabs/image <a></a> <a></a> <a></a> The <code>refilelabs/image</code> repository provides core utilities for image manipulation within the <a><strong>re;file labs</strong></a> platform. It offers robust, high-performance image processing features powered by WebAssembly (WASM) for secure, browser-based operations...
[]
https://avatars.githubusercontent.com/u/200686?v=4
zigrdkafka
deckarep/zigrdkafka
2024-09-13T20:01:06Z
This is librdkafka, hijacked and under the command and control of Zig, an easy Kafka client to tame your consumer and producer cluster.
main
0
8
0
8
https://api.github.com/repos/deckarep/zigrdkafka/tags
NOASSERTION
[ "api", "client", "consumer", "distributed-systems", "event-driven", "kafka", "librdkafka", "producer", "zig", "ziglang" ]
151
false
2024-11-30T19:56:44Z
true
true
0.13.0
github
[]
zigrdkafka <em>All your codebase are belong to us.</em> This is <code>librdkafka</code>, hijacked and under the command and control of Zig. This project requires <code>Zig 0.13</code> and is developed currently on <code>macos-aarch64</code>. Big Fat Caveat I am building this Zig-flavored wrapper to librdkafka or...
[]
https://avatars.githubusercontent.com/u/124217829?v=4
zig-syslinfo
javiorfo/zig-syslinfo
2024-12-03T15:06:25Z
Linux sysinfo Zig library
master
0
8
2
8
https://api.github.com/repos/javiorfo/zig-syslinfo/tags
MIT
[ "linux", "sysinfo", "zig", "zig-package" ]
42
false
2025-04-21T19:46:03Z
true
true
0.13.0
github
[]
zig-syslinfo <em>Linux sysinfo Zig library</em> Caveats <ul> <li>C libs dependencies: <code>asound</code>, <code>libnm</code>, <code>glib-2.0</code> </li> <li>Required Zig version: <strong>0.13</strong></li> <li>This library has been developed on and for Linux following open source philosophy.</li> </ul> Usage ```z...
[]
https://avatars.githubusercontent.com/u/191039718?v=4
fury
fury-lang/fury
2025-01-11T14:10:55Z
Fury, a gradual, safe systems language
master
10
8
0
8
https://api.github.com/repos/fury-lang/fury/tags
MIT
[ "compiler", "memory-management", "programming-language", "typechecker", "zig" ]
599
false
2025-05-05T15:07:52Z
true
true
0.11.0
github
[]
Fury, a gradual, safe systems language Goals <ul> <li>Teachability | Learnability | Readability</li> <li>Efficiency | Productivity</li> <li>Systems and application programming</li> </ul> See a simple circular linked list example in fury, ```rs struct Node { data: i64 next: Node? } fun main() { mut node3 ...
[]
https://avatars.githubusercontent.com/u/146390816?v=4
lua
allyourcodebase/lua
2024-08-22T17:59:21Z
lua build system ported to Build.zig
main
0
8
3
8
https://api.github.com/repos/allyourcodebase/lua/tags
MIT
[ "zig", "zig-package" ]
19
false
2025-05-16T22:56:02Z
true
true
0.14.0
github
[ { "commit": null, "name": "lua", "tar_url": null, "type": "remote", "url": "https://www.lua.org/ftp/lua-5.4.7.tar.gz" } ]
Lua 5.4.7 Build Instructions To build all targets run <code>sh zig build</code> Build Artifacts | Name | Artifact | |:---------:| ------------------------- | | "lua" | The main lua library | | "lua_exe" | The lua interpreter | | "luac" | The lua bytecode compiler | Compile...
[ "https://github.com/allyourcodebase/lua", "https://github.com/lfcm64/z-tree-sitter" ]
https://avatars.githubusercontent.com/u/126792083?v=4
zigache
jaxron/zigache
2024-09-10T10:17:45Z
A customizable cache library in Zig with multiple eviction policies.
main
1
8
1
8
https://api.github.com/repos/jaxron/zigache/tags
MIT
[ "zig", "zig-lang", "zig-library", "zig-package", "ziglang" ]
1,176
false
2025-05-10T13:00:42Z
true
true
unknown
github
[]
<a> </a> <a> </a> <a> </a> <a> </a> <em><b>Zigache</b> is an efficient caching library built in <a>Zig</a>, offering customizable cache eviction policies for various application needs.</em> <blockquote> <span class="bg-green-100 text-green-800 text-xs ...
[]
https://avatars.githubusercontent.com/u/132709186?v=4
zig-waybar-contrib
erffy/zig-waybar-contrib
2025-01-12T17:08:03Z
✨ Sleek and lightweight Waybar modules built with Zig
main
0
8
1
8
https://api.github.com/repos/erffy/zig-waybar-contrib/tags
GPL-3.0
[ "sway", "waybar", "waybar-contrib", "waybar-module", "zig", "ziglang", "zls" ]
165
false
2025-05-20T04:56:39Z
true
true
0.14.0
github
[]
<blockquote> <span class="bg-green-100 text-green-800 text-xs font-medium me-2 px-2.5 py-0.5 rounded dark:bg-green-900 dark:text-green-300">IMPORTANT</span> I'm new to Zig, so it might take me some time to add or update modules. Your help and support mean a lot as I learn and grow with this project! 🥰 </blockquote> ...
[]
https://avatars.githubusercontent.com/u/2773256?v=4
wabt
dasimmet/wabt
2024-12-22T18:03:06Z
WebAssembly Binary Toolkit (wabt) and Binaryen on the zig build system
main
0
8
1
8
https://api.github.com/repos/dasimmet/wabt/tags
Apache-2.0
[ "wabt", "wasm", "wasm2wat", "zig", "zig-package" ]
49
false
2025-05-21T08:42:29Z
true
true
0.14.0
github
[ { "commit": "3e826ecde1adfba5f88d10d361131405637e65a3", "name": "wabt", "tar_url": "https://github.com/WebAssembly/wabt/archive/3e826ecde1adfba5f88d10d361131405637e65a3.tar.gz", "type": "remote", "url": "https://github.com/WebAssembly/wabt" }, { "commit": "27fcf6979298949e8a462e16d09a035...
WebAssembly Tools on the zig build system uses the <a>Zig</a> build system to build WebAssembly's binary C tools. building <code>zig build zig build</code> add to your zig project <code>bash zig fetch --save git+https://github.com/dasimmet/wabt.git</code> <a>WebAssembly Binary Toolkit</a> ``` <blockquote> ./zig...
[ "https://github.com/dasimmet/ugtar", "https://github.com/dasimmet/wabt", "https://github.com/dasimmet/zware", "https://github.com/malcolmstill/zware" ]
https://avatars.githubusercontent.com/u/206480?v=4
localize.zig
karlseguin/localize.zig
2024-11-13T04:33:38Z
ICU Message Parser and Renderer
master
0
7
0
7
https://api.github.com/repos/karlseguin/localize.zig/tags
MIT
[ "localization", "zig", "zig-library", "zig-package" ]
22
false
2025-02-06T23:08:53Z
true
true
unknown
github
[]
ICU Message Format for Zig Very basic support for parsing and rendering ICU message formats. Install 1) Add localize.zig as a dependency in your <code>build.zig.zon</code>: <code>bash zig fetch --save git+https://github.com/karlseguin/localize.zig#master</code> 2) In your <code>build.zig</code>, add the <code>loca...
[]
https://avatars.githubusercontent.com/u/94462076?v=4
zigDOOM
lumi2021/zigDOOM
2025-01-18T20:15:06Z
Can zig run DOOM? The 1997 DOOM engine, rewritten in the zig programming language.
main
0
7
0
7
https://api.github.com/repos/lumi2021/zigDOOM/tags
-
[ "c", "doom", "doom2", "rewrite", "zig", "ziglang" ]
2,572
false
2025-05-13T23:56:09Z
true
true
unknown
github
[]
zigDOOM Can zig run DOOM? \ The 1997 DOOM engine, rewritten in the zig programming language. Still in development!
[]
https://avatars.githubusercontent.com/u/161890530?v=4
zig-sec
soheil-01/zig-sec
2024-08-15T15:20:42Z
Offensive Security Techniques in Zig: Research and Learning
main
0
7
1
7
https://api.github.com/repos/soheil-01/zig-sec/tags
-
[ "zig" ]
550
false
2025-05-02T21:44:38Z
true
true
unknown
github
[ { "commit": "407a4c7b869ee3d10db520fdfae8b9faf9b2adb5", "name": "zigwin32", "tar_url": "https://github.com/marlersoft/zigwin32/archive/407a4c7b869ee3d10db520fdfae8b9faf9b2adb5.tar.gz", "type": "remote", "url": "https://github.com/marlersoft/zigwin32" } ]
404
[]
https://avatars.githubusercontent.com/u/42496863?v=4
hiillos
xor-bits/hiillos
2024-11-14T02:19:47Z
microkernel in pure Zig
master
0
7
0
7
https://api.github.com/repos/xor-bits/hiillos/tags
AGPL-3.0
[ "kernel", "microkernel", "osdev", "zig" ]
683
false
2025-05-22T06:05:04Z
true
true
0.14.0
github
[ { "commit": "7b29b6e6f6d35052f01ed3831085a39aae131705.tar.gz", "name": "limine", "tar_url": "https://github.com/48cf/limine-zig/archive/7b29b6e6f6d35052f01ed3831085a39aae131705.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/48cf/limine-zig" }, { "commit": "refs", "name"...
# hiillos hiillos is an operating system with its own microkernel all written in pure Zig The plan is for the kernel to be just a scheduler, IPC relay and a physical memory manager. The system uses seL4-like capabilities, but on a global linear array instead of the CNode tree. And physical memory allocation is ...
[]
https://avatars.githubusercontent.com/u/179144860?v=4
cricket.zig
furpu/cricket.zig
2024-09-01T23:29:53Z
Zig library for encoding and decoding cryptographic data formats.
main
3
6
1
6
https://api.github.com/repos/furpu/cricket.zig/tags
MIT
[ "der", "pem", "pkcs", "zig", "zig-library" ]
55
false
2025-02-14T15:18:13Z
true
true
0.14.0-dev.1550+4fba7336a
github
[]
cricket.zig Zig library for encoding and decoding cryptographic data formats. <a></a>
[]
https://avatars.githubusercontent.com/u/89275?v=4
zig-htmx-tailwind-example
dgv/zig-htmx-tailwind-example
2024-09-06T21:24:53Z
Example CRUD app written in Zig + HTMX + Tailwind CSS
main
0
6
0
6
https://api.github.com/repos/dgv/zig-htmx-tailwind-example/tags
MIT
[ "crud", "crud-application", "htmx", "htmx-app", "tailwind", "web", "zig", "ziglang", "zmpl" ]
160
false
2025-03-07T14:19:55Z
true
true
0.13.0
github
[ { "commit": "master", "name": "httpz", "tar_url": "https://github.com/karlseguin/http.zig/archive/master.tar.gz", "type": "remote", "url": "https://github.com/karlseguin/http.zig" }, { "commit": "master", "name": "zmpl", "tar_url": "https://github.com/jetzig-framework/zmpl/archiv...
zig-htmx-tailwind-example <a></a> <a></a> <a></a> <a></a> <a></a> Example CRUD app written in Zig + HTMX + Tailwind CSS This project implements a pure dynamic web app with SPA-like features but without heavy complex Javascript or frameworks to keep up with. Just HTML/CSS + Zig ⚡ Usage ```bash Clone the repo $ ...
[]
https://avatars.githubusercontent.com/u/10801140?v=4
objective-zig-gen
colbyhall/objective-zig-gen
2024-09-05T00:45:18Z
Obejctive-C to Zig bindgen.
main
0
6
1
6
https://api.github.com/repos/colbyhall/objective-zig-gen/tags
MIT
[ "bindgen", "macos", "objective-c", "zig" ]
184
false
2025-01-14T02:18:44Z
true
false
unknown
github
[]
Zig Objective-C Generator (objective-zig-gen) <code>objective-zig-gen</code> is a work-in-progress tool for generating Objective-C bindings from Zig. This project aims to streamline the process of integrating Objective-C code with Zig, providing developers with a seamless way to interact with Objective-C APIs from Z...
[]
https://avatars.githubusercontent.com/u/4284735?v=4
zig-nan-boxing
SimonMeskens/zig-nan-boxing
2025-01-29T17:10:49Z
NaN boxing in Zig
main
1
6
0
6
https://api.github.com/repos/SimonMeskens/zig-nan-boxing/tags
MIT
[ "64-bit", "box", "double", "dynamic", "dynamic-types", "dynamic-typing", "nan-boxing", "zig" ]
9
false
2025-02-08T06:20:17Z
true
true
unknown
github
[]
⚡ Zig NaN Boxing This library provides a 64-bit dynamic box type that you can use for dynamically typed interpreters, that provides a number of types: <ul> <li>Doubles (including NaN)</li> <li>Integers (signed and unsigned)</li> <li>Booleans</li> <li>Pointers (truncated at 48 bits), including Null</li> <li>C Strings</...
[]
https://avatars.githubusercontent.com/u/30970706?v=4
lmdbx-zig
theseyan/lmdbx-zig
2024-11-05T15:46:55Z
Zig bindings for libMDBX (a fork of LMDB)
main
1
6
0
6
https://api.github.com/repos/theseyan/lmdbx-zig/tags
MIT
[ "database", "libmdbx", "lmdb", "zig", "zig-package" ]
84
false
2025-05-10T16:26:56Z
true
true
0.14.0
github
[ { "commit": null, "name": "mdbx", "tar_url": null, "type": "remote", "url": "https://libmdbx.dqdkfa.ru/release/libmdbx-amalgamated-0.14.1.tar.xz" }, { "commit": "refs", "name": "cpu_features", "tar_url": "https://github.com/slyshykO/cpu_model/archive/refs.tar.gz", "type": "re...
lmdbx-zig Zig bindings for <a>libMDBX</a> (a fork of LMDB), mostly ported from <a>zig-lmdb</a>. Built and tested with Zig version <code>0.14.0</code>. <blockquote> <em>libmdbx</em> is an extremely fast, compact, powerful, embedded, transactional <a>key-value database</a> with a specific set of properties and capabil...
[]
https://avatars.githubusercontent.com/u/34311583?v=4
dmon-zig
ttytm/dmon-zig
2024-10-19T18:12:33Z
Cross-platform Zig module to monitor changes in directories.
main
0
6
0
6
https://api.github.com/repos/ttytm/dmon-zig/tags
BSD-2-Clause
[ "bindings", "cross-platform", "filesystem", "library", "linux", "macos", "monitor", "monitoring", "os", "windows", "zig", "zig-package" ]
24
false
2025-02-04T06:56:19Z
true
true
unknown
github
[ { "commit": null, "name": "standalone_test_cases", "tar_url": null, "type": "relative", "url": "./src/bindings/dmon" } ]
dmon-zig <a></a> <a></a> Cross-platform Zig module to monitor changes in directories. It utilizes the <a>dmon</a> C99 library. Installation ```sh ~//your-awesome-projct zig fetch --save https://github.com/ttytm/dmon-zig/archive/main.tar.gz ``` ```zig // your-awesome-projct/build.zig const std = @import("std"); ...
[]
https://avatars.githubusercontent.com/u/20323081?v=4
zigscene
ngynkvn/zigscene
2024-10-14T00:41:58Z
fun little music visualization, "demo scene"
main
1
6
0
6
https://api.github.com/repos/ngynkvn/zigscene/tags
MIT
[ "audio-player", "audio-processing", "audio-visualizer", "demoscene", "raylib", "zig" ]
4,476
false
2025-03-15T07:01:32Z
true
true
0.14.0
github
[ { "commit": null, "name": "raylib", "tar_url": null, "type": "relative", "url": "./deps/raylib/" }, { "commit": null, "name": "tracy", "tar_url": null, "type": "relative", "url": "./deps/tracy/" } ]
zigscene Audio visualization experiment using zig and raylib. Built against <code>0.14.0-dev.2605+136c5a916</code> Getting Started <blockquote> <span class="bg-blue-100 text-blue-800 text-xs font-medium me-2 px-2.5 py-0.5 rounded dark:bg-blue-900 dark:text-blue-300">NOTE</span> This project uses the nightly master ...
[]
https://avatars.githubusercontent.com/u/13835680?v=4
todui
reykjalin/todui
2024-10-26T02:43:35Z
Task management and note taking TUI powered by plaintext with full mouse support. Built with Zig.
main
0
6
0
6
https://api.github.com/repos/reykjalin/todui/tags
MIT
[ "notes", "task-manager", "todo", "tui", "zig" ]
1,397
false
2025-04-15T01:34:16Z
true
true
unknown
github
[ { "commit": "refs", "name": "vaxis", "tar_url": "https://github.com/rockorager/libvaxis/archive/refs.tar.gz", "type": "remote", "url": "https://github.com/rockorager/libvaxis" }, { "commit": "1cceeb70e77dec941a4178160ff6c8d05a74de6f", "name": "known-folders", "tar_url": "https://...
Todui <blockquote> <strong>Note</strong> I consider Todui to be mostly feature complete at this point. Future development will be slow and mostly consist of minor quality-of-life improvements or fixing little annoyances and bugs that come up. </blockquote> A filesystem based TUI app for managing todo lists. The <a><...
[]
https://avatars.githubusercontent.com/u/998922?v=4
Advent-of-Code
dbushell/Advent-of-Code
2024-12-11T09:09:40Z
🎄 My solutions to Advent of Code
main
0
6
0
6
https://api.github.com/repos/dbushell/Advent-of-Code/tags
-
[ "advent-of-code", "typescript", "zig", "ziglang" ]
323
false
2025-04-17T19:42:38Z
false
false
unknown
github
[]
Advent of Code My personal solutions to <a>Advent of Code</a>. Coded mostly in brute force bad TypeScript (or worse) and some Zig. I may return to re-implement aesthetic and/or code golf solutions if I'm bored or use another language.
[]
https://avatars.githubusercontent.com/u/146390816?v=4
Stockfish
allyourcodebase/Stockfish
2024-12-11T16:56:53Z
Stockfish Built with Zig
main
0
6
0
6
https://api.github.com/repos/allyourcodebase/Stockfish/tags
GPL-3.0
[ "chess", "stockfish", "zig", "ziglang" ]
30
false
2025-04-18T22:36:48Z
true
true
0.14.0
github
[ { "commit": "sf_17.1.tar.gz", "name": "Stockfish", "tar_url": "https://github.com/official-stockfish/Stockfish/archive/sf_17.1.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/official-stockfish/Stockfish" } ]
Stockfish <a></a> Zig build for <a>Stockfish 17.1</a>. Requires zig 0.14.0. Usage ``` Build Stockfish zig build Build and run zig build run Show build options zig build -h ```
[ "https://github.com/allyourcodebase/Stockfish" ]
https://avatars.githubusercontent.com/u/50984334?v=4
zigpwgen
francescoalemanno/zigpwgen
2024-10-13T19:51:27Z
zigpwgen is for generating secure high-entropy, pronounceable passphrases.
main
0
6
0
6
https://api.github.com/repos/francescoalemanno/zigpwgen/tags
MIT
[ "passphrase", "passphrase-generator", "password", "password-generator", "pronounceable-password", "zig" ]
96
false
2025-01-18T03:17:40Z
true
true
unknown
github
[]
Zig Password Generator (zigpwgen) <code>zigpwgen</code> is a flexible password generator designed to produce passphrases that balance security and pronounceability. It is based on a pattern system where words, tokens, symbols, and digits can be flexibly combined. Built with the Zig programming language, <code>zigpwgen...
[]
https://avatars.githubusercontent.com/u/54124162?v=4
benchmarks
gmitch215/benchmarks
2024-09-13T01:19:21Z
📊 Browsable Benchmarks for Programming Languages
master
0
5
1
5
https://api.github.com/repos/gmitch215/benchmarks/tags
Apache-2.0
[ "benchmark", "bun", "c", "clang", "cpp", "deno", "gcc", "gnu", "go", "golang", "java", "javascript", "kotlin", "kotlin-native", "nodejs", "php", "ruby", "rust", "rustc", "zig" ]
5,415
false
2025-05-14T01:54:02Z
false
false
unknown
github
[]
⌚ benchmarks <blockquote> Programming benchmarks </blockquote> <a></a> <a></a> <a></a> <a></a> This repository contains various benchmarks on different programming languages for different algorithms. The primary goal of this repository is to provide a comparison between different programming languages and their spee...
[]
https://avatars.githubusercontent.com/u/11708465?v=4
PWA-Liveview
dwyl/PWA-Liveview
2024-12-28T16:49:09Z
PWA demo with Phoenix Liveview
main
4
5
0
5
https://api.github.com/repos/dwyl/PWA-Liveview/tags
GPL-3.0
[ "elixir", "leaflet", "phoenix-liveview", "pwa", "pwa-apps", "solidjs", "wasm", "webassembly", "y-indexeddb", "yjs", "zig" ]
18,977
false
2025-05-22T02:38:15Z
false
false
unknown
github
[]
Offline first Phoenix LiveView PWA An example of a real-time, collaborative multi-page web app built with <code>Phoenix LiveView</code>. It is designed for offline-first ready; it is packaged as a <a>PWA</a> and uses op-based CRDTs or local state and reactive components. Offline first solutions naturally offloads mo...
[]
https://avatars.githubusercontent.com/u/140198242?v=4
nix-flake-templates
nulladmin1/nix-flake-templates
2024-10-14T00:26:03Z
A collection of Nix Flake Templates for: Python, CMake, Poetry, uv, Rust, Fenix, Naersk, Vim, Zig, Bash etc.
main
0
5
1
5
https://api.github.com/repos/nulladmin1/nix-flake-templates/tags
-
[ "c", "cmake", "cplusplus", "cpp", "fenix", "go", "golang", "linux", "nix", "nix-flake", "nixpkgs", "poetry", "python", "rust", "template", "template-project", "templates", "zig" ]
582
false
2025-03-18T06:25:42Z
false
false
unknown
github
[]
❄️ Nix Flake Templates <a></a> <a></a> A collection of Nix Flake Templates <strong>Contributors, go to <a>CONTRIBUTING.md</a></strong> Table of Contents <ul> <li><a>Usage</a></li> <li><a>Examples</a></li> </ul> Usage Use <a><code>getflake</code></a> to initialize flake (recommended) <code>shell nix run github:...
[]
https://avatars.githubusercontent.com/u/77928207?v=4
llama.js
mattzcarey/llama.js
2024-08-29T14:02:04Z
run LLMs (llama, mamba, nemo, mistral) at native speeds from Javascript, Typescript.
main
0
5
0
5
https://api.github.com/repos/mattzcarey/llama.js/tags
-
[ "ai", "bun", "javascript", "js", "llama", "llamacpp", "llms", "machinelearning", "pytorch", "tensorflowjs", "ts", "typescript", "zig" ]
4
false
2024-09-18T22:24:31Z
false
false
unknown
github
[]
llama.js <blockquote> an experiment to run llama.cpp through a javascript runtime at near native speeds </blockquote> Installation <ul> <li>Clone the repo recursively</li> <li>Install zig to the path</li> <li> cd into llama.cpp.zig </li> <li> Download a model </li> </ul> <code>bash huggingface-cli download NousRes...
[]
https://avatars.githubusercontent.com/u/7109515?v=4
zig-clap
ramonmeza/zig-clap
2024-11-07T19:00:40Z
Zig bindings for free-audio's CLAP library.
main
0
5
0
5
https://api.github.com/repos/ramonmeza/zig-clap/tags
MIT
[ "audio", "c", "clap", "library", "plugin", "vst", "zig" ]
124
false
2025-05-12T18:06:23Z
true
true
0.14.0
github
[]
<ul> <li> https://nakst.gitlab.io/tutorial/clap-part-1.html I basically ported nakst's CLAP plugin to Zig. This article was extremely helpful in developing this binding. </li> <li> https://github.com/Not-Nik/raylib-zig I based a lot of my design decisions off of Not Nik's raylib-zig repo. This repo is great and reall...
[ "https://github.com/paoda/bp-jit", "https://github.com/paoda/turbo", "https://github.com/paoda/zba" ]
https://avatars.githubusercontent.com/u/124217829?v=4
ztatusbar
javiorfo/ztatusbar
2024-11-19T22:37:45Z
Configurable statusbar for Xorg server using xsetroot
master
0
5
0
5
https://api.github.com/repos/javiorfo/ztatusbar/tags
MIT
[ "linux", "statusbar", "window-manager", "xorg", "zig" ]
54
false
2025-04-21T19:45:46Z
true
true
0.13.0
github
[ { "commit": "refs", "name": "syslinfo", "tar_url": "https://github.com/javiorfo/zig-syslinfo/archive/refs.tar.gz", "type": "remote", "url": "https://github.com/javiorfo/zig-syslinfo" }, { "commit": "refs", "name": "tomlz", "tar_url": "https://github.com/mattyhall/tomlz/archive/re...
ztatusbar <em>Configurable statusbar developed in Zig for Xorg server using xsetroot</em> Caveats <ul> <li>Zig version <strong>0.13.0</strong></li> <li>C lib dependencies: <code>xorg-xsetroot</code>, <code>curl</code>, <code>alsa</code></li> <li>This library has been developed on and for Linux following open source...
[]
https://avatars.githubusercontent.com/u/146390816?v=4
lmdb
allyourcodebase/lmdb
2024-09-26T11:46:59Z
Lmdb using the zig build system
main
2
5
1
5
https://api.github.com/repos/allyourcodebase/lmdb/tags
BSD-3-Clause
[ "lmdb", "zig", "zig-package" ]
32
false
2025-03-14T09:49:35Z
true
true
0.14.0
github
[ { "commit": "f20e41de09d97e4461946b7e26ec831d0c24fac7.tar.gz", "name": "lmdb", "tar_url": "https://github.com/LMDB/lmdb/archive/f20e41de09d97e4461946b7e26ec831d0c24fac7.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/LMDB/lmdb" } ]
lmdb <a>Lmdb</a> using the <a>Zig</a> build system Usage First, update your <code>build.zig.zon</code>: ```elvish Initialize a <code>zig build</code> project if you haven't already zig init Support for <code>lmdb</code> starts with v0.9.31 and future releases zig fetch --save https://github.com/allyourcodebase/...
[ "https://github.com/allyourcodebase/lmdb", "https://github.com/bernardassan/recblock", "https://github.com/canvasxyz/zig-lmdb", "https://github.com/ikks/tldrtranslate" ]
https://avatars.githubusercontent.com/u/65524156?v=4
ESPAT
RecursiveError/ESPAT
2024-10-08T20:58:33Z
simple driver to use ESP32 boards as WiFi module via AT command firmware
main
4
5
0
5
https://api.github.com/repos/RecursiveError/ESPAT/tags
MIT
[ "embedded", "esp32", "wifi", "zig", "zig-package" ]
332
false
2025-03-06T20:40:04Z
true
true
unknown
github
[]
ESPAT ZIG VERSION: 0.14.0 simple driver made in Zig to use ESP32 boards as WiFi module via AT command firmware AT command firmware for ESP modules (32/8266) is a simple and inexpensive way to add wireless connection to embedded devices, although it is more limited than conventional RF modules, ESP modules abstract m...
[]
https://avatars.githubusercontent.com/u/124217829?v=4
zig-epub
javiorfo/zig-epub
2025-01-16T02:07:28Z
Minimal Zig library for creating EPUB 2.1 files
master
0
5
1
5
https://api.github.com/repos/javiorfo/zig-epub/tags
MIT
[ "epub", "epub-library", "zig", "zig-library", "zig-package" ]
54
false
2025-04-21T19:45:33Z
true
true
0.13.0
github
[]
zig-epub <em>Minimal Zig library for creating EPUB files</em> Caveats <ul> <li>C libs dependencies: <a>libzip 1.11.2</a> </li> <li>Required Zig version: <strong>0.13</strong></li> <li>Epub version: <code>2.0.1</code></li> <li>This library has been developed on and for <code>Linux</code> following open source philosop...
[]
https://avatars.githubusercontent.com/u/146390816?v=4
nativefiledialog-extended
allyourcodebase/nativefiledialog-extended
2024-08-15T14:26:36Z
nativefiledialog-extended ported to the zig build system
master
0
5
1
5
https://api.github.com/repos/allyourcodebase/nativefiledialog-extended/tags
MIT
[ "zig", "zig-package" ]
10
false
2025-04-11T16:49:22Z
true
true
0.14.0
github
[]
<a></a> nativefiledialog-extended This is <a>nativefiledialog-extended</a>, packaged for <a>Zig</a>. Installation First, update your <code>build.zig.zon</code>: ``` Initialize a <code>zig build</code> project if you haven't already zig init zig fetch --save git+https://github.com/allyourcodebase/nativefiledialog...
[]