https://github.com/itzmiadm/zig-binarystream
zig binarystream
https://github.com/itzmiadm/zig-binarystream
zig zig-binarystream ziglang
Last synced: 5 months ago
JSON representation
zig binarystream
- Host: GitHub
- URL: https://github.com/itzmiadm/zig-binarystream
- Owner: TheUnderName
- Created: 2024-04-28T18:14:07.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-28T18:32:10.000Z (about 2 years ago)
- Last Synced: 2025-02-11T14:51:31.770Z (over 1 year ago)
- Topics: zig, zig-binarystream, ziglang
- Language: Zig
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
zig-binarystream
zig-binarystream is a lightweight, low-level binary stream library for the Zig programming language
. It provides a set of utilities for efficient reading and writing of binary data, ideal for applications such as file I/O, network communication, and custom serialization formats.
⚙️ Features
Stream-based I/O: Efficient reading and writing of binary data streams.
Low-level operations: Direct manipulation of bytes for performance-critical applications.
Minimal dependencies: Pure Zig implementation with no external dependencies.
Flexible API: Supports various data types and custom structures.
📦 Installation
To include zig-binarystream in your Zig project, add it as a dependency in your build.zig file:
```zig
const bstream = b.addPackage("binarystream", "path/to/zig-binarystream");
```
Then, import and use it in your code:
```zig
const bstream = @import("binarystream");
```