https://github.com/yaml/yamlstar-zig
https://github.com/yaml/yamlstar-zig
Last synced: about 18 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/yaml/yamlstar-zig
- Owner: yaml
- License: mit
- Created: 2026-07-22T14:04:49.000Z (16 days ago)
- Default Branch: main
- Last Pushed: 2026-07-29T19:43:52.000Z (9 days ago)
- Last Synced: 2026-08-06T10:43:53.165Z (1 day ago)
- Language: Zig
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
- License: LICENSE
Awesome Lists containing this project
README
# YAMLStar Zig Binding
Zig binding for the YAMLStar shared library.
```zig
const yamlstar = @import("yamlstar");
var yaml = try yamlstar.YAMLStar.init(allocator);
defer yaml.deinit();
var result = try yaml.load("key: value");
defer result.deinit();
```
Install the matching `libyamlstar` release before using this package:
```bash
curl -sSL https://yamlstar.org/install | LIB=1 bash
```