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/124872?v=4
zig-rocca-s
jedisct1/zig-rocca-s
2021-10-19T23:02:17Z
An implementation of the ROCCA-S encryption scheme.
master
0
19
0
19
https://api.github.com/repos/jedisct1/zig-rocca-s/tags
MIT
[ "aead", "cipher", "rocca", "rocca-s", "zig", "zig-package" ]
24
false
2024-10-25T11:52:51Z
true
false
unknown
github
[]
ROCCA-S: an efficient AES-based encryption scheme This is an implementation of <a>ROCCA-S: an efficient AES-based encryption scheme for beyond 5G</a>, a very fast authenticated encryption scheme optimized for platforms with AES-NI or ARM crypto extensions. ROCCA-S has a 256 bit key size, a 128 bit nonce, processes 25...
[]
https://avatars.githubusercontent.com/u/91094662?v=4
cupcake
bootradev/cupcake
2021-11-23T21:47:16Z
an app framework for making small and delicious games! (very wip)
main
0
18
1
18
https://api.github.com/repos/bootradev/cupcake/tags
MIT
[ "gamedev", "zig" ]
696
false
2025-02-18T22:39:30Z
true
false
unknown
github
[]
cupcake is an app framework for making small and delicious games! (very wip) At the moment, it's just my personal place to doodle around with game development in zig. Don't expect any sort of usability, documentation, or code quality! goals <em>web first</em> Web pages are easily sharable, work on most devices, and...
[]
https://avatars.githubusercontent.com/u/1625198?v=4
minesweeper-zig
Ryp/minesweeper-zig
2021-09-17T09:19:39Z
Simple Minesweeper clone written in Zig, using SDL3 for graphics.
master
0
18
4
18
https://api.github.com/repos/Ryp/minesweeper-zig/tags
MIT
[ "game", "minesweeper", "zig" ]
82
false
2025-03-10T19:15:41Z
true
true
0.14.0
github
[ { "commit": "2bb5f57ea8b8c43eabe514f7bbd3361365ba2ff3", "name": "sdl", "tar_url": "https://github.com/castholm/SDL/archive/2bb5f57ea8b8c43eabe514f7bbd3361365ba2ff3.tar.gz", "type": "remote", "url": "https://github.com/castholm/SDL" } ]
Minesweeper Building This should get you going after cloning the repo: <code>sh $ zig build run -- &lt;size_x&gt; &lt;size_y&gt; &lt;mines&gt;</code> Controls | Action | Key | |--------------|--------------------| | Uncover cell | Left mouse button | | Flag cell | Right mouse button | | Qui...
[]
https://avatars.githubusercontent.com/u/124872?v=4
zig-eddsa-key-blinding
jedisct1/zig-eddsa-key-blinding
2022-01-20T21:42:36Z
A Zig implementation of EdDSA signatures with blind keys.
main
0
17
1
17
https://api.github.com/repos/jedisct1/zig-eddsa-key-blinding/tags
MIT
[ "blinding", "ed25519", "eddsa", "zig", "zig-package" ]
5
false
2025-01-18T04:18:25Z
true
false
unknown
github
[]
EdDSA signatures with blind keys A Zig implementation of the <a>EdDSA key blinding</a> proposal. ```zig // Create a standard Ed25519 key pair const kp = try Ed25519.KeyPair.create(null); <code>// Create a random blinding seed var blind: [32]u8 = undefined; crypto.random.bytes(&amp;blind); // Blind the key p...
[]
https://avatars.githubusercontent.com/u/2528778?v=4
svd4zig
rbino/svd4zig
2021-03-24T21:49:31Z
Convert System View Description (svd) files to Zig headers for baremetal development
master
5
17
18
17
https://api.github.com/repos/rbino/svd4zig/tags
Unlicense
[ "embedded", "microcontroller", "svd", "zig" ]
93
true
2024-03-31T03:53:32Z
true
false
unknown
github
[]
svd4zig Generate <a>Zig</a> header files from <a>CMSIS-SVD</a> files for accessing MMIO registers. Features This is a fork of <a>this <code>svd2zig</code></a> that uses the output format based of <a>this other <code>svd2zig</code></a>. It's named <code>svd4zig</code> since it's <code>svd2zig * 2</code>. Features t...
[]
https://avatars.githubusercontent.com/u/5332688?v=4
zig-getopt
dmgk/zig-getopt
2021-05-20T14:17:44Z
POSIX-compatible getopt(3) implementation in Zig
master
2
17
5
17
https://api.github.com/repos/dmgk/zig-getopt/tags
0BSD
[ "option-parser", "option-parsing", "zig", "zig-package", "ziglang" ]
10
false
2025-05-17T02:17:55Z
true
false
unknown
github
[]
Minimal POSIX getopt(3) implementation in Zig This is a minimal, allocation-free getopt(3) implementation with <a>POSIX-conforming</a> argument parsing semantics. Example ```zig const std = @import("std"); const debug = std.debug; const getopt = @import("getopt.zig"); pub fn main() void { var arg: []const u8 = ...
[]
https://avatars.githubusercontent.com/u/8824337?v=4
zvector
pzaino/zvector
2021-07-20T00:56:56Z
An ANSI C Vector library (Dynamic Array) that is fully configurable, fast, thread safe, reentrant, can store dynamic data structures as well as base datatypes and can be used to create dynamic stacks, dynamic queues and more.
main
0
17
4
17
https://api.github.com/repos/pzaino/zvector/tags
MIT
[ "algorithms", "ansi", "arrays", "bsd", "c", "c99", "data-structures", "dynamic-arrays", "dynamic-queue", "dynamic-stack", "embedded", "gcc", "hacktoberfest", "high-performance", "library", "linux", "macos", "vectors", "winodws", "zig" ]
22,716
false
2025-03-21T04:33:58Z
false
false
unknown
github
[]
ZVector <strong>Status:</strong> Still under active development. <code>- Security Tests:</code> <a></a> <a></a> <a></a> <a></a> <a></a> <code>- _________CI/CD:</code> <a></a> (Linux, macOS) This is a fast, configurable, portable, thread safe and reentrant Vector Library (dynamic arrays) in ANSI C 99. You can us...
[]
https://avatars.githubusercontent.com/u/124872?v=4
zig-hpke
jedisct1/zig-hpke
2021-03-30T19:36:34Z
HPKE implementation for Zig.
master
1
17
4
17
https://api.github.com/repos/jedisct1/zig-hpke/tags
MIT
[ "crypto", "hpke", "zig", "zig-package" ]
36
false
2025-03-25T05:56:13Z
true
true
unknown
github
[]
HPKE for Zig <code>zig-hpke</code> is an implementation of the <a>Hybrid Public Key Encryption</a> (HPKE) scheme. Usage Bounded arrays This code heavily relies on the <code>std.BoundedArray</code> type: a type to store small, variable-sized slices whose maximum size is known. Keys are typically represented using t...
[]
https://avatars.githubusercontent.com/u/2389051?v=4
zig-fuzzing-example
squeek502/zig-fuzzing-example
2021-09-20T03:58:59Z
An example of fuzzing Zig code with AFL++
master
1
16
1
16
https://api.github.com/repos/squeek502/zig-fuzzing-example/tags
0BSD
[ "example-project", "fuzz-testing", "fuzzing", "zig" ]
5
false
2025-04-09T10:19:25Z
true
false
unknown
github
[]
zig-fuzzing-example A simple example project demonstrating one of the methods for fuzzing <a>Zig</a> code detailed in the blog post <a>'Fuzzing Zig Code with AFL++'</a>. Requires <a><code>afl++</code></a> with <code>afl-clang-lto</code> to be installed. Building <ul> <li>Clone this repository</li> <li>Run <code>zig ...
[]
https://avatars.githubusercontent.com/u/5332688?v=4
zig-uuid
dmgk/zig-uuid
2021-05-22T22:24:06Z
Fast, allocation-free v4 UUIDs in Zig
master
7
16
11
16
https://api.github.com/repos/dmgk/zig-uuid/tags
0BSD
[ "uuid", "uuid-generator", "uuidv4", "zig", "zig-package", "ziglang" ]
8
false
2024-10-08T02:43:54Z
true
false
unknown
github
[]
Fast, allocation-free v4 UUIDs in Zig Example ```zig const std = @import("std"); const UUID = @import("uuid.zig").UUID; pub fn main() !void { // generate const uuid1 = UUID.init(); std.debug.print("{}\n", .{uuid1}); <code>// parse const uuid2 = try UUID.parse("3df6f0e4-f9b1-4e34-ad70-33206069b995"); std...
[]
https://avatars.githubusercontent.com/u/124872?v=4
zig-blind-rsa-signatures
jedisct1/zig-blind-rsa-signatures
2021-02-23T21:52:31Z
Blind RSA signatures implementation for Zig.
main
0
16
1
16
https://api.github.com/repos/jedisct1/zig-blind-rsa-signatures/tags
Apache-2.0
[ "blind", "blind-signatures", "rsa", "rsa-blind-signatures", "rsa-blinded-signatures", "signatures", "zig", "zig-package" ]
287
false
2025-04-09T10:17:54Z
true
false
unknown
github
[]
Blind RSA signatures Author-blinded RSASSA-PSS RSAE signatures. This is an implementation of the <a>RSA Blind Signatures</a> RFC. Also includes a preliminary implementation of the <a>Partially Blind RSA Signatures</a> draft. Protocol overview A client asks a server to sign a message. The server receives the messag...
[]
https://avatars.githubusercontent.com/u/10093365?v=4
coreutils-zig
Daimanta/coreutils-zig
2021-09-16T21:47:23Z
Coreutils recreated in Zig
master
2
16
1
16
https://api.github.com/repos/Daimanta/coreutils-zig/tags
GPL-3.0
[ "coreutils", "zig" ]
341
false
2025-04-13T19:17:18Z
true
false
unknown
github
[]
coreutils-zig This project aims to reimplement the GNU Coreutils in Zig. As of this moment it is nothing more than a hobby project and it serves as a playground for programming in Zig, testing the capabilities of the language. The goal of the project is the implementation of all commands of the GNU Coreutils collectio...
[]
https://avatars.githubusercontent.com/u/87844133?v=4
zig-toolsets
vezel-dev/zig-toolsets
2021-06-14T15:02:44Z
The Zig compiler and standard library packaged for use in MSBuild.
master
6
16
0
16
https://api.github.com/repos/vezel-dev/zig-toolsets/tags
0BSD
[ "build", "c", "cpp", "dotnet", "msbuild", "zig" ]
277
false
2025-05-14T12:26:02Z
false
false
unknown
github
[]
Zig Toolsets <strong> The Zig compiler and standard library packaged for use in MSBuild. </strong> [![License](https://img.shields.io/badge/license-0BSD%20AND%20MIT-brown)](LICENSE-0BSD) [![Commits](https://img.shields.io/github/commit-activity/m/vezel-dev/zig-toolsets/master?label=commi...
[]
https://avatars.githubusercontent.com/u/2286349?v=4
zig-bitjuggle
leecannon/zig-bitjuggle
2021-06-27T18:01:20Z
Various "bit juggling" helpers and functionality
master
0
16
1
16
https://api.github.com/repos/leecannon/zig-bitjuggle/tags
MIT
[ "zig", "zig-library", "zig-package", "ziglang" ]
68
false
2025-05-12T20:27:41Z
true
true
0.14.0-dev.3445+6c3cbb0c8
github
[]
zig-bitjuggle This package contains various "bit juggling" helpers and functionality: <ul> <li><code>isBitSet</code> - Check if a bit is set</li> <li><code>getBit</code> - Get the value of a bit</li> <li><code>getBits</code> - Get a range of bits</li> <li><code>setBit</code> - Set a specific bit</li> <li><code>setBits...
[]
https://avatars.githubusercontent.com/u/4252848?v=4
wasmparser
Luukdegram/wasmparser
2021-05-26T18:36:36Z
Wasm binary parser for Zig
master
1
16
4
16
https://api.github.com/repos/Luukdegram/wasmparser/tags
MIT
[ "binary-parser", "parser", "wasm", "wasm-bytecode", "wasm-parser", "wasmparser", "zig", "ziglang" ]
67
false
2025-02-27T00:31:27Z
true
false
unknown
github
[]
Zig WASM parser Parsing library implementing the wasm spec. To be used for projects written in <a>zig</a>. The goal of this library is to kickstart wasm-related projects in the Zig ecosystem. It will try to stay on top of the latest wasm proposals and implement those. Currently it only provides a single <code>parse</...
[]
https://avatars.githubusercontent.com/u/3932972?v=4
ftz
ikskuh/ftz
2021-02-24T09:17:13Z
A simple cross-platform file transfer utility
master
2
16
2
16
https://api.github.com/repos/ikskuh/ftz/tags
-
[ "file-transfer", "network", "networking", "tool", "zig", "ziglang" ]
26
false
2025-05-17T15:37:57Z
true
false
unknown
github
[]
ftz A small and simple file transfer utility. <strong>Features:</strong> - Upload and download files - Server can chose to provide only downloads or uploads - Clients are restricted to the subfolders, no way to break out. - Native cross platform support (Windows, Linux, MacOS, BSDs) - Static, small binary (207K on Li...
[]
https://avatars.githubusercontent.com/u/5973688?v=4
byway
dreinharth/byway
2022-01-06T16:43:53Z
Wayland compositor
main
2
16
0
16
https://api.github.com/repos/dreinharth/byway/tags
MIT
[ "compositor", "wayland", "wayland-compositor", "window-manager", "wlroots", "zig" ]
80
false
2025-01-30T03:54:37Z
true
false
unknown
github
[]
byway byway is a <a>Wayland</a> compositor, inspired by <a>cwm</a>, based on <a>wlroots</a>, and written in <a>Zig</a>. It aims to be concise both visually and in its implementation. Ease of maintenance is also a goal; Zig, wlroots, and Wayland are all moving quickly, and the intent is for byway to keep pace. byway be...
[]
https://avatars.githubusercontent.com/u/53379023?v=4
zig-argon2
x13a/zig-argon2
2021-09-05T20:58:10Z
Argon2 key derivation function in zig.
master
0
15
1
15
https://api.github.com/repos/x13a/zig-argon2/tags
MIT
[ "argon2", "crypto", "zig", "zig-lang" ]
25
false
2023-02-06T17:40:10Z
true
false
unknown
github
[]
zig-argon2 Argon2 key derivation function in zig. Merged: <a>9756</a> Reference <ul> <li><a>rfc</a></li> <li><a>go</a></li> <li><a>c</a></li> </ul>
[]
https://avatars.githubusercontent.com/u/3932972?v=4
zig-gemtext
ikskuh/zig-gemtext
2021-03-05T00:07:29Z
A zig library to manipulate gemini text files
master
0
15
3
15
https://api.github.com/repos/ikskuh/zig-gemtext/tags
MIT
[ "gemini", "gemini-language", "gemini-protocol", "markup", "markup-converter", "parser", "zig", "zig-package", "ziglang" ]
163
false
2025-05-04T21:54:19Z
true
false
unknown
github
[]
Gemini Text Processor This is a library and a tool to manipulate <a>gemini text files</a>. It provides both an easy-to-use API as well as a streaming parser with minimal allocation requirements and a proper separation between temporary allocations required for parsing and allocations for returned text fragments. The...
[]
https://avatars.githubusercontent.com/u/54106488?v=4
zig-vala
iddev5/zig-vala
2021-10-23T07:35:58Z
Zig :heart: Vala - Toolchain & Build System Integration
master
0
15
0
15
https://api.github.com/repos/iddev5/zig-vala/tags
-
[ "vala", "zig", "ziglang" ]
5
false
2023-09-30T11:32:19Z
false
false
unknown
github
[]
zig-vala Integration of Vala with Zig('s Build System). Usage The easiest way to use it is to just download <code>ZigValaStep.zig</code> to your project directory. Then include it in your build.zig: <code>zig const ZigValaStep = @import("ZigValaStep.zig");</code> You can create a Vala application as such: <code>zig...
[]
https://avatars.githubusercontent.com/u/2286349?v=4
zriscv
leecannon/zriscv
2021-07-01T13:32:04Z
RISC-V emulator in Zig
master
3
15
0
15
https://api.github.com/repos/leecannon/zriscv/tags
MIT
[ "risc-v", "riscv", "zig", "ziglang" ]
549
false
2024-02-25T01:18:30Z
true
false
unknown
github
[]
zriscv <a></a> RISC-V emulator in Zig What to expect This is the first emulator I've made other than CHIP-8, don't expect high quality nor speed. The only thing that should be expected is mistakes. The focus is on correctness not performance, I'm expecting practically every execution path to be littered with pote...
[]
https://avatars.githubusercontent.com/u/5464072?v=4
zig-unicode-ucd
nektro/zig-unicode-ucd
2021-05-31T02:33:29Z
Zig bindings for the Unicode Character Database
master
7
14
0
14
https://api.github.com/repos/nektro/zig-unicode-ucd/tags
MIT
[ "zig", "zig-package" ]
1,862
false
2025-05-21T20:33:29Z
true
false
unknown
github
[]
zig-unicode-ucd <a></a> <a></a> <a></a> <a></a> Zig bindings for the Unicode Character Database Last updated as of Unicode 16.0.0 http://www.unicode.org/reports/tr44/ https://www.unicode.org/versions/latest/ Development <code>zig build run -Dstep=generate zig build run -Dstep=run</code> License Code here is M...
[]
https://avatars.githubusercontent.com/u/5464072?v=4
zig-range
nektro/zig-range
2021-05-01T09:16:54Z
A range function to loop over an index without an extra variable.
master
0
14
1
14
https://api.github.com/repos/nektro/zig-range/tags
MIT
[ "zig", "zig-package" ]
4
false
2024-07-28T01:58:50Z
true
false
unknown
github
[]
zig-range <a></a> <a></a> A range function to loop over an index without an extra variable Usage <code>zig for (range(10)) |_, i| { // 'i' will increment from 0 -&gt; 9 }</code> Building Example Program <code>$ zigmod fetch $ zig build</code> Built With <ul> <li>Zig Master &amp; <a>Zigmod Package Manager</a...
[]
https://avatars.githubusercontent.com/u/5464072?v=4
zig-json
nektro/zig-json
2021-04-30T05:34:08Z
A JSON library for inspecting arbitrary values
master
0
14
3
14
https://api.github.com/repos/nektro/zig-json/tags
MIT
[ "zig", "zig-package" ]
122
false
2025-05-21T20:33:22Z
true
false
unknown
github
[]
zig-json <a></a> <a></a> <a></a> <a></a> A JSON library for inspecting arbitrary values. Optionally accepts trailing commas. Fully passes https://github.com/nst/JSONTestSuite. Usage See <code>test.zig</code> for examples. Building Example Program <code>$ zigmod fetch $ zig build test</code>
[]
https://avatars.githubusercontent.com/u/1915?v=4
dtb.zig
kivikakk/dtb.zig
2021-02-10T03:54:09Z
parse device tree blobs
main
0
14
7
14
https://api.github.com/repos/kivikakk/dtb.zig/tags
MIT
[ "dtb", "fdt", "zig" ]
98
false
2025-04-11T17:06:35Z
true
true
unknown
github
[]
dtb.zig Parse device tree blob files. <code>zig var qemu_arm64 = try dtb.parse(std.testing.allocator, qemu_arm64_dtb); defer qemu_arm64.deinit(std.testing.allocator);</code> regs and strings ```zig // This QEMU DTB places 512MiB of memory at 1GiB. testing.expectEqualSlices( [2]u64, &amp;.{.{ 1024 * 1024 * 1...
[]
https://avatars.githubusercontent.com/u/26302304?v=4
gamejam-zig-vulkan
Avokadoen/gamejam-zig-vulkan
2021-11-13T12:56:49Z
A game written in ~1 day using zig and vulkan
main
4
14
0
14
https://api.github.com/repos/Avokadoen/gamejam-zig-vulkan/tags
-
[ "gamejam", "vulkan", "zig" ]
7,047
false
2024-04-02T22:24:50Z
true
false
unknown
github
[]
Zig vulkan gamejam A game written in ~1 day using zig and vulkan Fork of <a>zig_vulkan</a> Build Download latest zig (tested on 0.9.0-dev.1622+71388b980) <code>bash $ git clone https://github.com/Avokadoen/gamejam-zig-vulkan.git $ cd ./gamejam-zig-vulkan $ git submodule init $ git submodule update $ zig build run<...
[]
https://avatars.githubusercontent.com/u/12878831?v=4
bottom-zig
Deecellar/bottom-zig
2021-11-21T12:14:06Z
🥺
daddy
0
13
1
13
https://api.github.com/repos/Deecellar/bottom-zig/tags
NOASSERTION
[ "zig" ]
1,102
false
2025-02-17T05:40:35Z
true
true
unknown
github
[ { "commit": "968258dc1b1230493d8f1677097c832a3d7e0bd8.tar.gz", "name": "args", "tar_url": "https://github.com/ikskuh/zig-args/archive/968258dc1b1230493d8f1677097c832a3d7e0bd8.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/ikskuh/zig-args" } ]
Bottom-Zig A complete implementation of the Bottom Spec in Zig with both encoding and decoding capabilities. Features <ul> <li>Bottom format encoding/decoding</li> <li>CLI interface compatible with bottom-rs options</li> <li>Static and shared library support</li> <li>WebAssembly build target</li> <li>C API bindings</...
[]
https://avatars.githubusercontent.com/u/5464072?v=4
zig-oauth2
nektro/zig-oauth2
2021-09-11T02:28:04Z
HTTP handler functions to allow you to easily add OAuth2 login support to your Zig application
master
0
13
1
13
https://api.github.com/repos/nektro/zig-oauth2/tags
MIT
[ "zig", "zig-package" ]
43
false
2025-05-21T20:33:15Z
true
false
unknown
github
[]
zig-oauth2 <a></a> <a></a> <a></a> <a></a> HTTP handler functions to allow you to easily add OAuth2 login support to your Zig application. Supported Providers <ul> <li>Amazon</li> <li>Battle.net</li> <li>Discord</li> <li>Facebook</li> <li>GitHub</li> <li>Google</li> <li>Microsoft</li> <li>Reddit</li> <li>Gitea</li>...
[]
https://avatars.githubusercontent.com/u/16408073?v=4
zig-nestedtext
LewisGaul/zig-nestedtext
2021-02-27T14:56:00Z
Zig NestedText parser library - a simple human readable data format based on YAML
main
8
13
1
13
https://api.github.com/repos/LewisGaul/zig-nestedtext/tags
MIT
[ "nestedtext", "parser", "zig" ]
140
false
2024-09-29T21:22:25Z
true
true
unknown
github
[ { "commit": "refs", "name": "clap", "tar_url": "https://github.com/Hejsil/zig-clap/archive/refs.tar.gz", "type": "remote", "url": "https://github.com/Hejsil/zig-clap" } ]
zig-nestedtext <a></a> <a></a> A NestedText parser written in Zig 0.13 targeting <a>NestedText v2.0</a> (note <a>Deviations From Specification</a> below). See my <a>Zig NestedText Library blog post</a>. Usage There are a few options for making use of this project: - Download from the <a>releases page</a> - Inclu...
[]
https://avatars.githubusercontent.com/u/196042?v=4
sapt
michaelo/sapt
2021-09-15T23:01:03Z
Simple file-oriented API-testing tool
main
0
13
0
13
https://api.github.com/repos/michaelo/sapt/tags
MIT
[ "api", "cli", "curl", "testing", "zig" ]
1,431
false
2025-01-15T21:31:06Z
true
false
unknown
github
[]
sapt - A simple tool for API testing <em>Att: I'm testing different intro-texts to test what communicates the intention the best</em> sapt aims to be a simple tool to help with API-testing and similar use cases. It focuses on making it easy for developers to compose, organize and perform tests/requests in an open, re...
[]
https://avatars.githubusercontent.com/u/34946442?v=4
zigwick
cryptocode/zigwick
2022-02-04T18:42:29Z
A Fenwick tree for Zig
main
0
13
0
13
https://api.github.com/repos/cryptocode/zigwick/tags
MIT
[ "binary-indexed-tree", "fenwick", "zig" ]
5
false
2024-12-28T00:57:09Z
true
false
unknown
github
[]
zig<strong>wick</strong> is a <a>Fenwick tree</a> implementation in <a>Zig</a>. Overview The main purpose of a Fenwick tree is to efficiently maintain prefix sums. The data structure supports O(log N) range queries and point updates. The need to update and query partial sums frequently comes up in competitive prog...
[]
https://avatars.githubusercontent.com/u/766758?v=4
libgeos.zig
guidorice/libgeos.zig
2022-01-13T00:20:50Z
Zig bindings for the GEOS C library; compile libgeos in your build.zig.
main
1
12
0
12
https://api.github.com/repos/guidorice/libgeos.zig/tags
NOASSERTION
[ "c", "computational-geometry", "geojson", "geospatial", "gis", "libgeos", "zig", "zig-package", "zig-programming-language", "ziglang" ]
73
false
2025-03-13T04:54:24Z
true
false
unknown
github
[]
libgeos.zig <a>Zig</a> bindings for the <a>GEOS C library (libgeos)</a> <blockquote> GEOS (Geometry Engine, Open Source) is a C/C++ library for spatial computational geometry of the sort generally used by “geographic information systems” software. GEOS is a core dependency of PostGIS, QGIS, GDAL, and Shapely. </block...
[]
https://avatars.githubusercontent.com/u/5132833?v=4
zig-gtk3
nfisher1226/zig-gtk3
2021-06-12T13:13:40Z
Convenience functions and wrappers for using Gtk+ in Zig
odin
0
12
1
12
https://api.github.com/repos/nfisher1226/zig-gtk3/tags
MIT
[ "gtk", "library", "zig" ]
151
false
2024-11-26T09:08:23Z
true
false
unknown
github
[]
zig-gtk3 This package contains some convenience functions and wrappers around the C api of both the Gtk+ and Vte libraries for developing Gui applications using Zig. Usage We track zig-master, so you will need the current master compiler. In your <code>build.zig</code> file, add the package path: <code>Zig const...
[]
https://avatars.githubusercontent.com/u/14359115?v=4
music_player
kdchambers/music_player
2021-11-18T05:32:10Z
Demo music player written in zig
main
0
12
0
12
https://api.github.com/repos/kdchambers/music_player/tags
GPL-3.0
[ "vulkan", "zig" ]
98,979
false
2025-04-12T12:49:21Z
true
false
unknown
github
[]
music player A simple vulkan-based <strong>DEMO</strong> music player written in zig. The project is only for the purposes of learning and is not intended for real use in it's current state. The project ships with an example library and is hardcoded to use that. Dependencies <ul> <li>zig (master)</li> <li>ao</li> <l...
[]
https://avatars.githubusercontent.com/u/37453713?v=4
zigvale
ominitay/zigvale
2021-08-22T12:15:04Z
A Zig implementation of the stivale2 boot protocol
main
1
12
0
12
https://api.github.com/repos/ominitay/zigvale/tags
MIT
[ "boot", "bootloader", "hacktoberfest", "kernel", "osdev", "stivale", "stivale2", "zig", "zig-package", "ziglang", "zigvale" ]
86
false
2023-10-28T13:51:54Z
true
false
unknown
github
[]
Zigvale Zigvale is a Zig implementation of the stivale2 boot protocol to be used both in kernels and bootloaders. The specification, along with C header files, may be found <a>here</a>. Example Visit <a>zigvale-barebones</a> for a bare-bones kernel demonstrating how to use Zigvale. Add to your project Zigvale is a...
[]
https://avatars.githubusercontent.com/u/110615?v=4
hwzip.zig
hdorio/hwzip.zig
2021-10-08T14:54:37Z
Zig version of hwzip
master
1
12
2
12
https://api.github.com/repos/hdorio/hwzip.zig/tags
Unlicense
[ "compression", "zig", "zip" ]
3,761
false
2024-04-09T08:04:49Z
true
false
unknown
github
[]
hwzip.zig What's hwzip.zig? It's a port in Zig of the program <strong>hwzip-2.1</strong> written by Hans Wennborg. - <a>Zip Files: History, Explanation and Implementation</a> - <a>Shrink, Reduce, and Implode: The Legacy Zip Compression Methods</a> <strong>hwzip</strong> is an example implementation written in C of t...
[]
https://avatars.githubusercontent.com/u/5728002?v=4
IUPMetadata
batiati/IUPMetadata
2021-06-19T22:59:24Z
This project aims to collect rich metadata information about IUP's elements, enabling code-gen tools to create type-checked bindings for any programing language.
master
1
12
3
12
https://api.github.com/repos/batiati/IUPMetadata/tags
Unlicense
[ "code-generation", "csharp", "gui", "iup", "iup-gui-library", "iup-toolkit", "multiplatform", "zig" ]
15,430
false
2024-11-28T22:57:06Z
false
false
unknown
github
[]
404
[]
https://avatars.githubusercontent.com/u/58830309?v=4
zelf
g-w1/zelf
2021-03-08T20:00:20Z
playing around with ELF in zig
main
0
12
1
12
https://api.github.com/repos/g-w1/zelf/tags
-
[ "elf", "zig" ]
7
false
2023-11-27T00:11:27Z
true
false
unknown
github
[]
An attempt at an elf linker This is meant to be a simple learning project. Resources For ELF Stuff https://raw.githubusercontent.com/corkami/pics/28cb0226093ed57b348723bc473cea0162dad366/binary/elf101/elf101-64.svg https://cirosantilli.com/elf-hello-world https://github.com/mewmew/dissection/blob/master/elf64/elf6...
[]
https://avatars.githubusercontent.com/u/47984692?v=4
assemblio
luehmann/assemblio
2022-01-23T21:53:52Z
null
main
0
12
1
12
https://api.github.com/repos/luehmann/assemblio/tags
GPL-3.0
[ "wasm-4", "wasm4", "zig" ]
79
false
2025-01-07T22:05:19Z
true
false
unknown
github
[]
Optimize build <code>wasm-opt -Oz --strip-dwarf --strip-producers --zero-filled-memory -o zig-out/lib/small.wasm zig-out/lib/cart.wasm</code>
[]
https://avatars.githubusercontent.com/u/52591095?v=4
advent-of-code
MeanderingProgrammer/advent-of-code
2021-03-24T23:38:18Z
Advent of Code - All Years - Blazingly Fast
main
0
12
1
12
https://api.github.com/repos/MeanderingProgrammer/advent-of-code/tags
MIT
[ "advent-of-code", "advent-of-code-2015", "advent-of-code-2016", "advent-of-code-2017", "advent-of-code-2018", "advent-of-code-2019", "advent-of-code-2020", "advent-of-code-2021", "advent-of-code-2022", "advent-of-code-2023", "advent-of-code-2024", "go", "ocaml", "python", "rust", "zig"...
6,013
false
2025-04-14T03:46:11Z
true
true
unknown
github
[]
Advent of Code All Years - Blazingly Fast Runtimes History When I first started Advent in 2020 I wrote everything in <code>Python</code> for simplicity as well as getting better at my main scripting language. I then decided to go back and solve all the years from 2015 on also in <code>Python</code>. Since the...
[]
https://avatars.githubusercontent.com/u/124872?v=4
zig-morus
jedisct1/zig-morus
2021-10-28T22:42:35Z
MORUS-1280-128 implementation in Zig.
master
0
11
0
11
https://api.github.com/repos/jedisct1/zig-morus/tags
MIT
[ "morus", "morus-1280-128", "webassembly", "zig", "zig-package" ]
16
false
2024-05-09T20:00:03Z
true
false
unknown
github
[]
MORUS cipher for Zig This is a Zig implementation of <a>MORUS</a> (MORUS-1280-128) MORUS is a fast authenticated cipher for platforms without hardware AES acceleration. It performs especially well on WebAssembly compared to alternatives. Its performance is comparable to AES-OCB, without using AES instructions. Ben...
[]
https://avatars.githubusercontent.com/u/547147?v=4
zig-releaser
knadh/zig-releaser
2021-10-23T16:26:44Z
A simple hack to use GoReleaser to build, release, and publish Zig projects.
master
1
11
2
11
https://api.github.com/repos/knadh/zig-releaser/tags
MIT
[ "build-release", "build-tool", "goreleaser", "package", "release", "release-automation", "zig", "zig-package" ]
7
false
2025-03-08T04:30:30Z
false
false
unknown
github
[]
GoReleaser v2 Official Support 🎉 See <a>https://goreleaser.com/quick-start/</a>. zig-releaser (old, GoReleaser v1) zig-releaser is a hack that allows Zig programs to be built, packaged, and released with <a>GoReleaser</a>, a tool for publishing Go programs. <a>Here is an example</a> for a Zig program published to ...
[]
https://avatars.githubusercontent.com/u/5464072?v=4
discord-archiver
nektro/discord-archiver
2021-04-29T07:33:42Z
Chat archiver for Discord
master
0
11
1
11
https://api.github.com/repos/nektro/discord-archiver/tags
NOASSERTION
[ "archive", "discord", "zig" ]
18
false
2025-03-18T12:42:33Z
true
false
unknown
github
[]
discord-archiver <a></a> <a></a> An archiver for Discord. Written in Zig. Usage <ol> <li> Channels <code>$ ./discord-archiver channel &lt;BOT_TOKEN&gt; &lt;CHANNEL_ID&gt;</code> </li> <li> Guilds <code>$ ./discord-archiver guild &lt;BOT_TOKEN&gt; &lt;GUILD_ID&gt;</code> </li> </ol> Zig <ul> <li>https://zigla...
[]
https://avatars.githubusercontent.com/u/5464072?v=4
zig-zorm
nektro/zig-zorm
2021-08-09T08:41:46Z
An ORM-ish library for Zig.
master
1
11
0
11
https://api.github.com/repos/nektro/zig-zorm/tags
MPL-2.0
[ "sqlite", "zig", "zig-package" ]
37
false
2025-05-21T20:33:31Z
true
false
unknown
github
[]
Zorm <a></a> <a></a> <a></a> <a></a> The database library for Zig. Supports <ul> <li>Sqlite3</li> </ul>
[]
https://avatars.githubusercontent.com/u/54106488?v=4
inon
iddev5/inon
2021-08-03T17:38:22Z
:floppy_disk: Data serialization format in Zig
master
0
11
0
11
https://api.github.com/repos/iddev5/inon/tags
MIT
[ "data-format", "serialization", "zig", "ziglang" ]
173
false
2024-12-28T00:24:28Z
true
true
unknown
github
[ { "commit": "92c2875f2f91bf2a22b2be89b47ef0c3732f4812.tar.gz", "name": "parser-toolkit", "tar_url": "https://github.com/MasterQ32/parser-toolkit/archive/92c2875f2f91bf2a22b2be89b47ef0c3732f4812.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/MasterQ32/parser-toolkit" } ]
inon Data configuration format in Zig <ul> <li>Simple human-readable data serialization format</li> <li>Function execution capabilties: both native as well as foreign</li> <li>Operates on Zig's standard types</li> <li>Fast, powerful serialization and deserialization</li> <li>Pretty printing and serialization to JSON c...
[]
https://avatars.githubusercontent.com/u/85027668?v=4
dotfiles
txtyash/dotfiles
2021-06-07T15:04:18Z
Yash's dotfiiles(configuration files for nixos and linux)
master
0
11
1
11
https://api.github.com/repos/txtyash/dotfiles/tags
-
[ "dotfiles", "fish", "kanata", "neovim", "nix", "nixos", "nixvim", "rust", "stylix", "wezterm", "zig" ]
14,306
false
2025-05-03T21:22:05Z
false
false
unknown
github
[]
404
[]
https://avatars.githubusercontent.com/u/6153158?v=4
zig-wasm-snake
holobeat/zig-wasm-snake
2021-10-25T03:36:58Z
Classic snake game written in Zig, compiled to WASM.
main
1
11
1
11
https://api.github.com/repos/holobeat/zig-wasm-snake/tags
-
[ "game", "wasm", "zig" ]
8
false
2024-11-23T18:40:05Z
false
false
unknown
github
[]
zig-wasm-snake Reimplementation of my other repo elm-snake (done in Elm), this time using the Zig language. The zig source is compiled into WASM, running directly from the web page. Try it online at https://holobeat.github.io/zig-wasm-snake.
[]
https://avatars.githubusercontent.com/u/32691832?v=4
tatl
BanchouBoo/tatl
2021-06-02T01:09:38Z
Zig library for deserializing Aseprite files
master
0
10
1
10
https://api.github.com/repos/BanchouBoo/tatl/tags
Unlicense
[ "aseprite", "deserialization", "library", "zig" ]
24
false
2024-07-29T18:24:07Z
true
false
unknown
github
[]
Tatl Library for deserializing Aseprite files for usage in game development, image editors, etc. Made for Aseprite v1.2.x, there is no guarantee this library will work with files made in other versions of Aseprite. You can view the Aseprite file spec <a>here</a>. Example ```zig const std = @import("std"); const ta...
[]
https://avatars.githubusercontent.com/u/30342951?v=4
handmadehero_zig
MzaxnaV/handmadehero_zig
2022-01-10T07:12:21Z
personal Handmade Hero repo in zig
main
1
10
1
10
https://api.github.com/repos/MzaxnaV/handmadehero_zig/tags
-
[ "game-development", "handmade-hero", "vscode", "zig" ]
2,245
false
2025-05-13T19:21:55Z
true
true
0.14.0
github
[ { "commit": "7b434a47c2b85f395d8e5a6dca47af6a74422521.tar.gz", "name": "zigwin32", "tar_url": "https://github.com/marlersoft/zigwin32/archive/7b434a47c2b85f395d8e5a6dca47af6a74422521.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/marlersoft/zigwin32" } ]
Handmade Hero zig Handmade Hero personal repo written in zig (0.14). I try to be close to what Casey does, with small changes where it makes sense to me. For debug profiler display set <code>PROFILE</code> option to <code>true</code> in build.zig. Custom tools on <a>code/tools</a>. In addition to handmade hero stuff...
[]
https://avatars.githubusercontent.com/u/63465728?v=4
blo
alichraghi/blo
2021-10-19T14:17:30Z
If you don't like crabs
main
0
10
0
10
https://api.github.com/repos/alichraghi/blo/tags
MIT
[ "ascii", "cat", "cli", "file", "stdout", "zig" ]
74
false
2024-10-25T07:12:16Z
true
false
unknown
github
[]
Blo Installation zigmod: <code>zigmod aq install 1/alichraghi/blo</code> TODO <br/><input type='checkbox' class='w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded focus:ring-blue-500 dark:focus:ring-blue-600 dark:ring-offset-gray-800 focus:ring-2 dark:bg-gray-700 dark:border-gray-600' disabled></input> M...
[]
https://avatars.githubusercontent.com/u/43040593?v=4
brainfuck-zig
dantecatalfamo/brainfuck-zig
2021-11-27T02:51:06Z
Brainfuck interpreter written in zig
master
0
9
2
9
https://api.github.com/repos/dantecatalfamo/brainfuck-zig/tags
MIT
[ "brainfuck", "brainfuck-interpreter", "zig" ]
11
false
2024-11-07T08:17:42Z
true
false
unknown
github
[]
Brainfuck-zig Embeddable zig brainfuck interpreter. Usage <code>usage: brainfuck [-e expression] [file path]</code> Embedding ```zig const interpreter = @import("brainfuck-zig/src/main.zig").interpreter; try interpret(program_string, reader, writer, error_writer); ```
[]
https://avatars.githubusercontent.com/u/177491?v=4
create-zig-wasm-app
trashhalo/create-zig-wasm-app
2021-12-27T21:10:44Z
Boilerplate to stand up a SPA app using Zig 0.9 for webassembly and Vite
master
2
9
0
9
https://api.github.com/repos/trashhalo/create-zig-wasm-app/tags
MIT
[ "pin", "vite", "wasm", "webassembly", "zig" ]
11
false
2024-08-25T04:41:06Z
true
false
unknown
github
[]
Create Zig Wasm App Boilerplate to stand up a SPA app using Zig 0.9 for webassembly and Vite. Commands sent using <a>WAPC</a>. Getting started <ul> <li>Get npm/node</li> <li>Get zig 0.9</li> <li>Get gyro for package management</li> <li>Create a deps.zig by running "gyro fetch"</li> <li>Build wasm payload</li> <li><co...
[]
https://avatars.githubusercontent.com/u/12070598?v=4
lambda
rvcas/lambda
2022-01-01T21:50:40Z
The Lambda Calculus in Zig
main
0
8
0
8
https://api.github.com/repos/rvcas/lambda/tags
MIT
[ "lambda-calculus", "zig" ]
7
false
2023-11-20T13:42:59Z
true
false
unknown
github
[]
Lambda Calculus A simple implementation of the lambda calculus in zig. Resources <ul> <li>https://www.youtube.com/watch?v=93wbsfoX9iE</li> <li>https://en.wikipedia.org/wiki/Lambda_calculus</li> </ul>
[]
https://avatars.githubusercontent.com/u/1416077?v=4
ray-tracing-weekend.zig
Jack-Ji/ray-tracing-weekend.zig
2021-08-28T20:11:03Z
Zig implementation of famous ray-tracing-in-a-weekend
main
0
8
1
8
https://api.github.com/repos/Jack-Ji/ray-tracing-weekend.zig/tags
MIT
[ "raytracing", "zig" ]
308
false
2024-05-28T09:08:46Z
true
false
unknown
github
[]
ray-tracing-weekend.zig Zig implementation of famous ray-tracing-in-a-weekend dependency zig-0.9.0 master run <blockquote> zig build run -Drelease-fast &gt; sample.ppm </blockquote>
[]
https://avatars.githubusercontent.com/u/5464072?v=4
zig-leven
nektro/zig-leven
2021-07-27T06:59:53Z
Measure the difference between two slices using the Levenshtein distance algorithm
master
0
8
0
8
https://api.github.com/repos/nektro/zig-leven/tags
MIT
[ "zig", "zig-package" ]
13
false
2025-05-21T20:33:39Z
true
false
unknown
github
[]
zig-leven <a></a> <a></a> <a></a> <a></a> Measure the difference between two slices using the Levenshtein distance algorithm Adapted from https://github.com/sindresorhus/leven Usage <code>pub fn leven(comptime T: type, alloc: *std.mem.Allocator, a: []const T, b: []const T, max: ?usize) !usize</code> Future TODO...
[]
https://avatars.githubusercontent.com/u/37453713?v=4
zigvale-barebones
ominitay/zigvale-barebones
2021-11-21T11:34:45Z
A brief example of the use of the Zigvale library in a bare-bones kernel.
main
0
8
1
8
https://api.github.com/repos/ominitay/zigvale-barebones/tags
MIT
[ "kernel", "osdev", "stivale", "stivale2", "zig", "ziglang" ]
12
false
2024-07-04T08:42:22Z
true
false
unknown
github
[]
Zigvale Barebones Kernel This is a brief example of how to use the Zigvale library for the stivale2 boot protocol in a simple kernel. Zigvale can be found <a>here</a>. Build To build this, you will need a recent build of Zig, and the <code>zigmod</code> package manager. ``` sh Fetch Zigvale &amp; Limine bootloader...
[]
https://avatars.githubusercontent.com/u/200686?v=4
dungeon-rush
deckarep/dungeon-rush
2021-09-30T01:30:03Z
👾🐍 A zig port of Dungeon Rush. An open-source game inspired by snake, written in pure Zig with SDL2.
main
0
8
0
8
https://api.github.com/repos/deckarep/dungeon-rush/tags
NOASSERTION
[ "c", "dungeon-crawler", "game", "port", "rogue-like", "sdl", "sdl2", "zig", "ziglang" ]
14,490
false
2025-04-24T03:39:37Z
true
false
unknown
github
[]
DungeonRush in Zig! This is a near exact <strong>Zig port</strong> of the <a>original DungeonRush <code>C-based</code></a> rogue-like game running on SDL2 originally developed by @rapiz1. Status <ul> <li>Fully playable - confirmed working on MacOS, Linux Mint</li> <li>Nearly complete port, no networking or auxill...
[]
https://avatars.githubusercontent.com/u/3932972?v=4
SLF
ikskuh/SLF
2022-02-05T21:10:11Z
The Simple Linking Format
master
0
8
0
8
https://api.github.com/repos/ikskuh/SLF/tags
MIT
[ "binary", "binutils", "linker", "object-format", "zig", "zig-package", "ziglang" ]
41
false
2024-05-29T09:00:03Z
true
false
unknown
github
[]
⛓ Simple Linking Format SLF is a very simple object file format that can be used to link programs that don't require distinct sections for code and data. Documentation <ul> <li><a>Binary Format</a></li> </ul> Available Tools <ul> <li><code>slf-ld</code> is the standalone linker that can be used to link object files ...
[]
https://avatars.githubusercontent.com/u/2389051?v=4
zigescape
squeek502/zigescape
2021-10-04T00:44:29Z
A tool for converting between binary data and Zig string literals
master
0
8
0
8
https://api.github.com/repos/squeek502/zigescape/tags
0BSD
[ "escaping", "string-literals", "zig" ]
16
false
2024-11-23T23:02:06Z
true
true
unknown
github
[ { "commit": "0f2db7700b05356ebb1ccddbbf1797048925f072.tar.gz", "name": "clap", "tar_url": "https://github.com/Hejsil/zig-clap/archive/0f2db7700b05356ebb1ccddbbf1797048925f072.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/Hejsil/zig-clap" } ]
zigescape A tool for converting between binary data and <a>Zig</a> string literals. The original motivation for this was to be able to easily turn inputs found via fuzz testing into strings that can be used in Zig test cases (<a>like in the tests added by this commit</a>). Basic example (more can be found below): <...
[]
https://avatars.githubusercontent.com/u/7270159?v=4
zig-libssh2
mattnite/zig-libssh2
2021-12-17T16:42:42Z
compile libssh2 in your build.zig
main
3
8
5
8
https://api.github.com/repos/mattnite/zig-libssh2/tags
MIT
[ "build", "ssh", "zig", "zig-package" ]
19
false
2025-04-09T07:44:54Z
true
false
unknown
github
[]
libssh2 build package <a></a> Like this project? If you like this project or other works of mine, please consider <a>donating to or sponsoring me</a> on Github <a>:heart:</a> How to use This repo contains code for your <code>build.zig</code> that can statically compile libssh2. Link to your application In order ...
[]
https://avatars.githubusercontent.com/u/4252848?v=4
lemon_pie
Luukdegram/lemon_pie
2021-06-26T15:25:00Z
Library to build fast, reliable, Gemini servers with ease
master
5
8
1
8
https://api.github.com/repos/Luukdegram/lemon_pie/tags
MIT
[ "gemini", "gemini-protocol", "gemini-server", "server", "web", "zig", "ziglang" ]
39
false
2024-07-26T08:01:08Z
true
false
unknown
github
[]
Lemon Pie Lemon pie is a library to build <a>Gemini</a> servers. It's implemented in <a>Zig</a> and its main goal is to provide the building blocks with enough customizability to either depend on its implementation to do the work for you, or provide the access to do it yourself. This allows us to support all use case...
[]
https://avatars.githubusercontent.com/u/102242?v=4
zlox
nathanleiby/zlox
2021-11-02T04:44:04Z
zlox implements the Lox programming language in Zig
main
1
8
3
8
https://api.github.com/repos/nathanleiby/zlox/tags
-
[ "crafting-interpreters", "lox", "zig" ]
327
false
2024-09-27T10:57:30Z
true
false
unknown
github
[]
zlox <code>zlox</code> implements the Lox programming language in Zig. The repo implements the "Bytecode Virtual Machine" for Lox from the Crafting Interpreters book. It follows the 2nd part of the book. I have previously implemented the first part of the book ("Tree-walk Interpreter") in Julia, here: https://github...
[]
https://avatars.githubusercontent.com/u/18542095?v=4
ziglings-stream
achou11/ziglings-stream
2021-09-17T19:43:32Z
Me doing the ziglings
main
0
7
0
7
https://api.github.com/repos/achou11/ziglings-stream/tags
MIT
[ "exercises", "zig" ]
121
false
2023-08-05T22:44:22Z
true
false
unknown
github
[]
Ziglings Welcome to Ziglings! This project contains a series of tiny broken programs. By fixing them, you'll learn how to read and write <a>Zig</a> code. Those tiny broken programs need your help! (You'll also save the planet from evil aliens and help some friendly elephants stick together, which is very sweet of y...
[]
https://avatars.githubusercontent.com/u/3598852?v=4
zshim
svercl/zshim
2021-02-21T21:11:38Z
A shim for Scoop.
main
0
7
1
7
https://api.github.com/repos/svercl/zshim/tags
NOASSERTION
[ "scoop", "zig" ]
27
false
2024-05-25T00:43:38Z
true
false
unknown
github
[]
<code>zshim</code> zshim is the <a><code>shim</code></a>. Building Requirements: <ul> <li><a>Zig 0.12.0</a></li> <li>git</li> </ul> Once you have those, then it's as easy as: <code>shell git clone https://github.com/svercl/zshim.git cd zshim zig build -Doptimize=ReleaseSafe</code> Installation The easiest way to...
[]
https://avatars.githubusercontent.com/u/53620720?v=4
bf-interpreter-zig
willdoescode/bf-interpreter-zig
2021-03-25T05:32:25Z
Ziglang bf interpreter
main
0
7
0
7
https://api.github.com/repos/willdoescode/bf-interpreter-zig/tags
-
[ "bf", "brainfuck", "brainfuck-interpreter", "zig", "ziglang" ]
940
false
2025-02-08T03:21:37Z
true
false
unknown
github
[]
BF zig interpreter Rules <ul> <li>&gt; move cell pointer forward</li> <li>&lt; move cell pointer backward</li> <li>+ increment current cell</li> <li>- decrement current cell</li> <li>, take a character as input and assign to current cell</li> <li>. output character value of current cell</li> <li>[ start loop</li> <l...
[]
https://avatars.githubusercontent.com/u/813865?v=4
lispz
bnjmnt4n/lispz
2021-04-01T15:38:05Z
A Lisp interpreter written in Zig.
main
0
7
0
7
https://api.github.com/repos/bnjmnt4n/lispz/tags
-
[ "lisp", "zig" ]
76
false
2024-05-28T20:33:50Z
true
false
unknown
github
[]
lispz A Lisp interpreter written in <a>Zig</a>, based on the <a>Writing a Lisp</a> series. Usage <ol> <li>Install <a>Zig v0.10.0</a>.</li> <li> Execute the following <code>sh $ git clone --recursive https://github.com/bnjmnt4n/lispz.git $ cd lispz $ zig build run</code> </li> </ol>
[]
https://avatars.githubusercontent.com/u/43040593?v=4
tlpr-zig
dantecatalfamo/tlpr-zig
2021-12-03T04:32:35Z
Thermal printer zig library and cli
master
1
7
0
7
https://api.github.com/repos/dantecatalfamo/tlpr-zig/tags
-
[ "cli", "escpos", "thermal-printer", "zig", "zig-library" ]
64
false
2022-01-20T15:41:11Z
true
false
unknown
github
[]
tlpr-zig Library Most ESC/POS commands are implemented in <code>src/commands.zig</code>. CLI ``` usage: tlpr --ip [options] tlpr --stdout [options] Thermal Line Printer application. Prints input through thermal printer. <code>-c cut paper after printing. -e emphasis -n don't initialize the printer...
[]
https://avatars.githubusercontent.com/u/9347096?v=4
mimalloc-zig-wrapper
massivelivefun/mimalloc-zig-wrapper
2021-09-09T06:09:16Z
A lightweight implementation of Zig's std.mem.Allocator interface that wraps around Microsoft's mimalloc.
main
0
7
0
7
https://api.github.com/repos/massivelivefun/mimalloc-zig-wrapper/tags
MIT
[ "library", "memory-allocator", "wrapper-api", "zig" ]
19
false
2025-04-12T19:01:16Z
true
false
unknown
github
[]
mimalloc-zig-wrapper A lightweight implementation of Zig's std.mem.Allocator interface that wraps around Microsoft's mimalloc. Usage Use this library as a Zig library (<a>instructions here</a>) and then add something like this to your root source file: ```zig const mimalloc = @import("mimalloc-zig-wrapper"); const m...
[]
https://avatars.githubusercontent.com/u/2326560?v=4
zoap
nmeum/zoap
2021-10-03T09:31:53Z
A WiP CoAP implementation for bare-metal constrained devices in Zig
master
0
7
1
7
https://api.github.com/repos/nmeum/zoap/tags
AGPL-3.0
[ "bare-metal", "coap", "coap-server", "embedded", "zig" ]
104
false
2025-02-14T03:15:18Z
true
true
0.13.0
github
[]
zoap A WiP <a>CoAP</a> implementation for bare-metal <a>constrained devices</a> in <a>Zig</a>. Status Presently, the majority of the CoAP standard is not implemented. However, creating a very basic CoAP server which sends and receives non-confirmable messages is possible and already done as part of my <a>zig-riscv-e...
[]
https://avatars.githubusercontent.com/u/48922451?v=4
websocket
otsmr/websocket
2022-01-25T19:15:35Z
Learning different langs by implementing the WebSocket protocoll.
main
0
7
0
7
https://api.github.com/repos/otsmr/websocket/tags
-
[ "cpp", "rust", "websocket", "zig" ]
622
false
2024-11-16T13:39:53Z
false
false
unknown
github
[]
Implementing WebSocket to learn Sometimes I just want to learn a new language, and no, that has nothing to do with <a>ThePrimeagen</a> (<a>2022</a>, <a>2023</a>, <a>2024</a>). Languages 2024 (current): Zig <code>sh cd zig/ zig build run</code> Then open <code>chat.html</code> for a simple chat application. 2023 -...
[ "https://github.com/Thomvanoorschot/backstage", "https://github.com/discord-zig/discord.zig", "https://github.com/karlseguin/http.zig" ]
https://avatars.githubusercontent.com/u/9960268?v=4
sasshimi
ducdetronquito/sasshimi
2021-08-29T08:00:30Z
A toy SASS compiler 🍣
master
1
7
2
7
https://api.github.com/repos/ducdetronquito/sasshimi/tags
-
[ "sass", "zig" ]
28
false
2023-10-21T10:22:17Z
true
false
unknown
github
[]
Sasshimi 🍣 <a></a> A toy experiment to build a SASS compiler in Zig. Goals <ol> <li>Have fun when I don't want to work on <a>requestz</a></li> <li>Learn how a compiler works</li> <li>???</li> <li>Profit, obviously</li> </ol> Usage <code>zig build run -- "a SCSS formatted string"</code> State ```scss /<em> input...
[]
https://avatars.githubusercontent.com/u/23049896?v=4
zig-deb
compscidr/zig-deb
2021-09-30T16:03:56Z
Package zig into an apt package for installing on debian / ubuntu
main
6
6
1
6
https://api.github.com/repos/compscidr/zig-deb/tags
Apache-2.0
[ "apt", "debian", "ubuntu", "zig" ]
43
false
2025-03-20T06:44:58Z
false
false
unknown
github
[]
zig-deb Package <a>zig</a> from the release into an apt package for installing on debian / ubuntu. Uses the binary build from the zig release page. To use, add the following to <code>/etc/apt/sources.list.d/zig.list</code>: <code>deb [trusted=yes] https://apt.fury.io/compscidr/ /</code> Then run: <code>sudo apt upda...
[]
https://avatars.githubusercontent.com/u/5464072?v=4
zig-iana-tlds
nektro/zig-iana-tlds
2021-04-14T08:30:24Z
List of official IANA Top Level Domain Names
master
0
6
0
6
https://api.github.com/repos/nektro/zig-iana-tlds/tags
MIT
[ "zig", "zig-package" ]
44
false
2025-05-21T20:33:26Z
true
false
unknown
github
[]
zig-iana-tlds <a></a> <a></a> <a></a> <a></a> list of official IANA Top Level Domain Names. https://data.iana.org/TLD/tlds-alpha-by-domain.txt
[]
https://avatars.githubusercontent.com/u/10274397?v=4
zig-pico
Linouth/zig-pico
2021-12-02T22:29:10Z
Framework for writing Zig applications for the RPi Pico.
master
0
6
0
6
https://api.github.com/repos/Linouth/zig-pico/tags
-
[ "bare-metal", "rp2040", "rpi-pico", "zig", "ziglang" ]
375
false
2025-01-10T03:50:41Z
true
false
unknown
github
[]
zig-pico - RP2040/Pico SDK for Zig This framework is for writing zig applications for the Pico microcontroller (RP2040). It is far from finished but can be a great starting point for your own projects. The project is in active development so anyting can change still. Any help would also be appreciated. Right now it o...
[]
https://avatars.githubusercontent.com/u/44317699?v=4
zline
ajkachnic/zline
2021-10-18T01:54:35Z
A powerful line editor for Zig
main
0
6
0
6
https://api.github.com/repos/ajkachnic/zline/tags
-
[ "line-editor", "zig" ]
12
false
2024-06-23T21:58:52Z
true
false
unknown
github
[]
<blockquote> 🚩 <strong>This project is archived!</strong> 🚩 <em>It should still work well (at least for basic use cases), but I encourage someone else to take this code and make it better</em> </blockquote> zline <strong><em>IMPORTANT</em></strong>: <em>please note that this is a very WIP project, and probably no...
[]
https://avatars.githubusercontent.com/u/237442?v=4
zitt
pedromsilvapt/zitt
2021-06-09T22:27:29Z
Experimental Zig chainable iterators library
master
0
6
0
6
https://api.github.com/repos/pedromsilvapt/zitt/tags
-
[ "functional-programming", "iterators", "streams", "zig" ]
26
false
2022-05-10T09:14:18Z
true
false
unknown
github
[]
zitt This repository contains an experimental iterator repository. Native iterators in Zig are considered by this library as any structure that provides a <code>next</code> method and that returns an optional. This library provides a function <code>itt</code> that can be used to wrap any array, slice or native ite...
[]
https://avatars.githubusercontent.com/u/471335?v=4
AnyTest
timfjord/AnyTest
2021-08-23T13:28:24Z
Run any test from Sublime Text
main
2
6
1
6
https://api.github.com/repos/timfjord/AnyTest/tags
MIT
[ "cucumber", "elixir", "exunit", "go", "java", "javascript", "jest", "minitest", "pytest", "python", "pyunit", "rspec", "ruby", "rust", "sublime-text", "swift", "test-runner", "testing", "testing-tools", "zig" ]
237
false
2024-12-26T02:00:02Z
false
false
unknown
github
[]
<a></a> AnyTest <a></a> <a></a> Run any test from Sublime Text A Sublime Text 3/4 package whose main idea is to automatically detect a test framework for the given file and run it. It is a Sublime Text interpretation of the awesome <a>vim-test</a> plugin. Currently, the following test frameworks are supported (mo...
[]
https://avatars.githubusercontent.com/u/39616?v=4
zlox
zlw/zlox
2022-01-15T00:55:26Z
Crafting Interpreter's clox but in Zig
main
0
6
0
6
https://api.github.com/repos/zlw/zlox/tags
MIT
[ "bytecode", "lox", "virtual-machine", "zig" ]
289
false
2025-03-17T09:34:28Z
true
false
unknown
github
[]
zlox <ul> <li><a>Crafting Interpreter</a>'s clox but in <a>Zig</a> (v0.13.0)</li> <li><a>Crafting Interpreters - Part III - A Bytecode Virtual Machine</a></li> <li>When stuck on allocating memory, got some help from <a>avillega/zilox</a> 😅</li> <li>Test runner shamelessly stolen from <a>jwmerrill/zig-lox</a> and adapt...
[]
https://avatars.githubusercontent.com/u/127971?v=4
zig-piecetable
daurnimator/zig-piecetable
2021-09-29T17:52:04Z
A PieceTable data structure for zig
main
0
6
1
6
https://api.github.com/repos/daurnimator/zig-piecetable/tags
-
[ "datastructures", "piecetable", "zig" ]
12
false
2025-02-15T11:24:56Z
true
true
unknown
github
[]
Zig PieceTable Overview A piece table is made of two buffers, the original content and a new append only "add" buffer. We start with a "span" that covers the entire original buffer, and for every modification we divide that up based on where hte insert or delete is performed and how many characters it is. Each of th...
[]
https://avatars.githubusercontent.com/u/23709124?v=4
zig-ini
sreehax/zig-ini
2021-06-27T07:43:16Z
.ini parser for zig
dev
0
6
1
6
https://api.github.com/repos/sreehax/zig-ini/tags
MIT
[ "zig", "ziglang" ]
5
false
2024-09-27T20:02:17Z
false
false
unknown
github
[]
zig-ini This library is meant to simplify reading .ini files in Zig. For examples on usage, check out <code>example.zig</code>. The main purpose of this library is to aid in using git config files, but it can potentially be applied anywhere that needs to work with .ini files
[]
https://avatars.githubusercontent.com/u/227141?v=4
scoop-zig
enndubyu/scoop-zig
2021-06-16T01:01:10Z
A scoop bucket for the zig programming language and related tools.
master
0
6
2
6
https://api.github.com/repos/enndubyu/scoop-zig/tags
Unlicense
[ "scoop", "scoop-bucket", "zig", "zig-dev", "ziglang" ]
993
false
2025-05-21T06:08:12Z
false
false
unknown
github
[]
:zap: scoop-zig :zap: <a></a> A scoop bucket for the zig compiler and related tools. Updated bihourly. Feel free to create an issue requesting any useful zig tools that are missing from the bucket. To install zig: ```sh add scoop bucket scoop bucket add scoop-zig https://github.com/enndubyu/scoop-zig install zig...
[]
https://avatars.githubusercontent.com/u/66054069?v=4
waterfall
uncomfyhalomacro/waterfall
2021-11-22T10:18:32Z
a curation of all rice and configs for https://github.com/riverwm/river
main
0
6
0
6
https://api.github.com/repos/uncomfyhalomacro/waterfall/tags
-
[ "config", "dotfiles", "dynamic-tiling", "river", "riverwm", "wayland", "wayland-compositor", "window-manager", "wlroots", "zig" ]
5
false
2024-02-02T19:32:31Z
false
false
unknown
github
[]
waterfall a curation of all my rice and configs for https://github.com/riverwm/river
[]
https://avatars.githubusercontent.com/u/5132833?v=4
zig-vte
nfisher1226/zig-vte
2021-06-21T01:43:32Z
Zig wrappers and convenience functions around the Vte and Gtk+ libraries
odin
0
6
0
6
https://api.github.com/repos/nfisher1226/zig-vte/tags
MIT
[ "gtk", "library", "terminal-emulator", "zig" ]
189
false
2024-10-11T05:49:42Z
true
false
unknown
github
[]
zig-gtk3 This package contains some convenience functions and wrappers around the C api of both the Gtk+ and Vte libraries for developing Gui applications using Zig. Usage We track zig-master, so you will need the current master compiler. In your <code>build.zig</code> file, add the package path: <code>Zig const...
[]
https://avatars.githubusercontent.com/u/5464072?v=4
zig-git
nektro/zig-git
2022-02-01T11:01:58Z
Inspect into the depths of your .git folder purely from Zig
master
0
5
0
5
https://api.github.com/repos/nektro/zig-git/tags
MIT
[ "zig", "zig-package" ]
124
false
2025-05-21T20:33:16Z
true
false
unknown
github
[]
zig-git <a></a> <a></a> <a></a> <a></a> Inspect into the depths of your .git folder purely from Zig.
[]
https://avatars.githubusercontent.com/u/51487819?v=4
zig-dots
paperdev-code/zig-dots
2021-07-27T16:55:30Z
Dots, a semigraphical drawing library made in Zig.
master
0
5
0
5
https://api.github.com/repos/paperdev-code/zig-dots/tags
MIT
[ "library", "semigraphics", "terminal", "unicode", "zig", "zig-library" ]
40
false
2024-07-05T15:30:33Z
false
false
unknown
github
[]
A semigraphical drawing library made in Zig. I created this library as a way to learn my way around the Zig programming language. It is a type of virtual dot matrix that can be either printed to the terminal, or returned as a string that consists of <strong>Unicode</strong> Braille characters. Adding to your pro...
[]
https://avatars.githubusercontent.com/u/4701322?v=4
zig-utils
Zuyoutoki/zig-utils
2021-04-14T03:24:41Z
Essential Utilities Written in Zig
master
0
5
2
5
https://api.github.com/repos/Zuyoutoki/zig-utils/tags
MIT
[ "coreutils", "zig" ]
25
false
2024-02-14T19:59:36Z
true
false
unknown
github
[]
404
[]
https://avatars.githubusercontent.com/u/1405886?v=4
aoc2021
Vzaa/aoc2021
2021-11-30T21:04:08Z
Advent of Code 2021 Solutions in Zig
main
0
5
0
5
https://api.github.com/repos/Vzaa/aoc2021/tags
-
[ "advent-of-code", "advent-of-code-2021", "advent-of-code-2021-zig", "aoc2021", "zig" ]
124
false
2021-12-25T05:35:35Z
false
false
unknown
github
[]
AoC 2021 Trying to Learn Zig Edition
[]
https://avatars.githubusercontent.com/u/22225222?v=4
minimixer
arguablykomodo/minimixer
2022-01-04T19:59:44Z
A very barebones X11 pulseaudio volume mixer
master
0
5
0
5
https://api.github.com/repos/arguablykomodo/minimixer/tags
GPL-3.0
[ "pulseaudio", "volume-control", "xlib", "zig" ]
37
false
2025-03-02T22:59:49Z
true
false
unknown
github
[]
A very barebones pulseaudio volume mixer. Building you will require the <code>libx11</code>, <code>libxft</code>, and <code>libpulse</code> libraries in your system (and of course, <code>zig</code>). <code>zig build -h</code> should explain the rest.
[]
https://avatars.githubusercontent.com/u/1458409?v=4
tga.zig
ratfactor/tga.zig
2021-06-09T01:04:38Z
Demonstration of writing a TGA file from Zig.
main
0
5
1
5
https://api.github.com/repos/ratfactor/tga.zig/tags
MIT
[ "tga", "tga-format", "tga-image", "zig" ]
5
false
2023-09-27T22:56:37Z
false
false
unknown
github
[]
404
[]
https://avatars.githubusercontent.com/u/4250341?v=4
XPROEngine
JonSnowbd/XPROEngine
2021-02-13T21:52:18Z
XPROEngine is the engine used to power a yet unnamed project based around fun instanced survival.
main
0
5
0
5
https://api.github.com/repos/JonSnowbd/XPROEngine/tags
-
[ "zig", "zig-ecs", "zig-gamekit" ]
2,596
false
2022-10-27T23:43:05Z
true
false
unknown
github
[]
Todo Soon this will contain introduction material, and a listing of important default components, systems, and entity mixins.
[]
https://avatars.githubusercontent.com/u/18511640?v=4
Talea
uri-nyx/Talea
2021-10-21T22:58:38Z
A (not so) tiny RISC custom cpu architecture and system
main
0
5
0
5
https://api.github.com/repos/uri-nyx/Talea/tags
MIT
[ "assembly", "cpu-emulator", "emulator", "fantasy", "fantasy-computer", "fantasy-console", "minify", "toy-project", "zig" ]
4,430
false
2024-08-20T03:40:39Z
true
true
unknown
github
[]
404
[]
https://avatars.githubusercontent.com/u/95108673?v=4
zig-essence
aoemods/zig-essence
2021-11-25T00:57:22Z
Zig impl of Relic Entertainment's Essence formats
main
4
5
0
5
https://api.github.com/repos/aoemods/zig-essence/tags
MIT
[ "aoe4", "zig", "zig-package" ]
38
false
2022-03-13T16:03:39Z
true
false
unknown
github
[]
zig-essence Low-level minimal allocation implementation of Relic's funky formats in Zig with comments and clearly named variables. SGAs: Headers should work for all versions of SGAs, but more high-level code and complex operations are only tested on AoE4 SGAs. Getting sgatool You can grab a copy of <code>sgatool</...
[]
https://avatars.githubusercontent.com/u/3718227?v=4
wasm4-docker
christopher-kleine/wasm4-docker
2021-11-25T20:07:24Z
Dockerfile to create a docker image than compiles AssemblyScript, C, Go, Rust and Zig
main
0
4
1
4
https://api.github.com/repos/christopher-kleine/wasm4-docker/tags
-
[ "assemblyscript", "co", "d", "docker", "fantasy-console", "game-development", "go", "nelua", "odin", "rust", "wasm", "wasm4", "webassembly", "zig" ]
11
false
2022-11-20T15:54:15Z
false
false
unknown
github
[]
wasm4 Docker image to create and develop games for the Fantasy Console <a>WASM-4</a>. Image variants: anihex/wasm4:- All variants include the following tools: - The <code>w4</code> CLI - Binaryen (<code>wasm-opt</code> etc) Aside from that, there currently there are the following variants: <code>full</code>, <code>...
[]
https://avatars.githubusercontent.com/u/1458409?v=4
ziglings
ratfactor/ziglings
2021-01-03T17:17:12Z
Learn the Zig programming language by fixing tiny broken programs.
main
2
4,443
470
4,443
https://api.github.com/repos/ratfactor/ziglings/tags
MIT
[ "beginner-friendly", "educational", "exercises", "learning-by-doing", "zig", "ziglang" ]
545
false
2025-05-21T15:55:05Z
false
false
unknown
github
[]
Ziglings ⚠️ Attention! Ziglings has moved to Codeberg! Check out directly our handy new URL: https://ziglings.org Or visit the repo at: https://codeberg.org/ziglings/exercises
[]
https://avatars.githubusercontent.com/u/65322356?v=4
zls
zigtools/zls
2020-04-24T22:19:50Z
A Zig language server supporting Zig developers with features like autocomplete and goto definition
master
134
3,786
357
3,786
https://api.github.com/repos/zigtools/zls/tags
MIT
[ "language-server", "language-server-protocol", "lsp", "lsp-server", "zig", "ziglang", "zls" ]
8,411
false
2025-05-21T22:46:11Z
true
true
0.15.0-dev.441+c1649d586
github
[ { "commit": "aa24df42183ad415d10bc0a33e6238c437fc0f59.tar.gz", "name": "known_folders", "tar_url": "https://github.com/ziglibs/known-folders/archive/aa24df42183ad415d10bc0a33e6238c437fc0f59.tar.gz.tar.gz", "type": "remote", "url": "https://github.com/ziglibs/known-folders" }, { "commit":...
<a></a> <a></a> <a></a> <strong>Need support? Wanna help out? Join our <a>Discord server</a>!</strong> ZLS is a non-official implementation of the <a>Language Server Protocol</a> for <a>Zig</a> in Zig. It provides developers with IDE <a>features</a> in their editor. Installation See the <a>Installation Guide</a> ...
[]
https://avatars.githubusercontent.com/u/89790094?v=4
river
riverwm/river
2020-03-20T21:53:10Z
[mirror] A dynamic tiling Wayland compositor
master
67
3,553
156
3,553
https://api.github.com/repos/riverwm/river/tags
GPL-3.0
[ "wayland", "wayland-compositor", "window-manager", "wlroots", "zig" ]
3,135
false
2025-05-22T05:32:29Z
true
true
unknown
github
[ { "commit": "v0.2.0.tar.gz", "name": "zig-pixman", "tar_url": "https://codeberg.org/ifreund/zig-pixman/archive/v0.2.0.tar.gz.tar.gz", "type": "remote", "url": "https://codeberg.org/ifreund/zig-pixman" }, { "commit": "bd8afd256fb6beed7d72e3580b00f33dea7155a1.tar.gz", "name": "zig-wayl...
Overview River is a dynamic tiling Wayland compositor with flexible runtime configuration. Check <a>packaging status</a> — Join us at <a>#river</a> on irc.libera.chat — Read our man pages, <a>wiki</a>, and <a>Code of Conduct</a> The main repository is on <a>codeberg</a>, which is where the issue tracker may b...
[]
https://avatars.githubusercontent.com/u/32980656?v=4
raylib-zig
Not-Nik/raylib-zig
2020-02-15T09:58:13Z
Manually tweaked, auto-generated raylib bindings for zig. https://github.com/raysan5/raylib
devel
12
1,132
181
1,132
https://api.github.com/repos/Not-Nik/raylib-zig/tags
MIT
[ "binding", "bindings", "game-development", "gamedev", "raylib", "zig", "zig-package" ]
2,899
false
2025-05-22T06:39:34Z
true
true
0.14.0
github
[ { "commit": "master", "name": "raylib", "tar_url": "https://github.com/raysan5/raylib/archive/master.tar.gz", "type": "remote", "url": "https://github.com/raysan5/raylib" }, { "commit": "1536ae35c7b42d863135f4181fd2a225e531f68b", "name": "raygui", "tar_url": "https://github.com/r...
raylib-zig Manually tweaked, auto-generated <a>raylib</a> bindings for zig. Bindings tested on raylib version 5.6-dev and Zig 0.14.0 Thanks to all the <a>contributors</a> for their help with this binding. Example ```zig const rl = @import("raylib"); pub fn main() anyerror!void { // Initialization //----...
[ "https://github.com/0xErwin1/langton.zig", "https://github.com/EarthmanMuons/clefcraft", "https://github.com/Frost-Phoenix/zig-sweeper", "https://github.com/IWhitebird/Zimacs", "https://github.com/Jacquwes/Zip-8", "https://github.com/JamzOJamz/terraria-classic", "https://github.com/Mario-SO/zig-pong", ...
https://avatars.githubusercontent.com/u/304904?v=4
zigup
marler8997/zigup
2020-05-30T17:33:47Z
Download and manage zig compilers.
master
52
998
70
998
https://api.github.com/repos/marler8997/zigup/tags
MIT-0
[ "zig", "zig-compilers" ]
155
false
2025-05-22T01:37:14Z
true
true
0.14.0
github
[]
zigup Download and manage zig compilers. <blockquote> NOTE: I no longer use zigup. I've switched to using <a>anyzig</a> instead and recommend others do the same (here's <a>why</a>). Zigup will continue to be supported for those that just love it so much! </blockquote> How to Install Go to https://marler8997.github....
[]
https://avatars.githubusercontent.com/u/5464072?v=4
zigmod
nektro/zigmod
2020-11-09T22:56:32Z
📦 A package manager for the Zig programming language.
master
22
860
39
860
https://api.github.com/repos/nektro/zigmod/tags
MIT
[ "package-manager", "zig" ]
779
false
2025-05-21T15:13:54Z
true
false
unknown
github
[]
zigmod <a></a> <a></a> <a></a> <a></a> A package manager for the Zig programming language. Zig <ul> <li>https://ziglang.org/</li> <li>https://github.com/ziglang/zig</li> <li>https://github.com/ziglang/zig/wiki/Community</li> </ul> Download <ul> <li>https://github.com/nektro/zigmod/releases</li> </ul> Built With <...
[]
https://avatars.githubusercontent.com/u/15335529?v=4
zig.guide
Sobeston/zig.guide
2020-06-19T07:16:57Z
Repo for https://zig.guide content. Get up to speed with Zig quickly.
master
55
818
204
818
https://api.github.com/repos/Sobeston/zig.guide/tags
MIT
[ "documentation", "education", "educational", "learn-to-code", "learning", "learning-by-doing", "programming-language", "zig", "ziglang" ]
639
false
2025-05-20T21:45:57Z
true
false
unknown
github
[]
zig.guide Repo for https://zig.guide content. Feedback and PRs welcome. Testing <code>bash zig build --summary all</code> Contributing <ol> <li>Make use of <code>zig build</code> - it handles fmt and testing for you.</li> <li>Use the correct Zig version; <code>zig build</code> will select what content to test based...
[]