Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tensorush/zig-quickphf
Zig port of quickphf library for static hash map generation.
https://github.com/tensorush/zig-quickphf
compile-time-map hash-map hash-maps minimal-perfect-hash perfect-hash phf static-map static-map-generator static-maps zig zig-lang zig-language zig-lib zig-library zig-package zig-port ziglang
Last synced: 28 days ago
JSON representation
Zig port of quickphf library for static hash map generation.
- Host: GitHub
- URL: https://github.com/tensorush/zig-quickphf
- Owner: tensorush
- License: mit
- Created: 2024-03-25T20:41:27.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-07-18T13:05:49.000Z (4 months ago)
- Last Synced: 2024-10-02T07:04:43.879Z (about 1 month ago)
- Topics: compile-time-map, hash-map, hash-maps, minimal-perfect-hash, perfect-hash, phf, static-map, static-map-generator, static-maps, zig, zig-lang, zig-language, zig-lib, zig-library, zig-package, zig-port, ziglang
- Language: Zig
- Homepage: https://tensorush.github.io/zig-quickphf/
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zig-quickphf
[![CI][ci-shd]][ci-url]
[![CD][cd-shd]][cd-url]
[![DC][dc-shd]][dc-url]
[![LC][lc-shd]][lc-url]## Zig port of [quickphf library](https://github.com/dtrifuno/quickphf) for static hash map generation.
### :rocket: Usage
- Add `quickphf` dependency to `build.zig.zon`.
```sh
zig fetch --save https://github.com/tensorush/zig-quickphf/archive/.tar.gz
```- Use `quickphf` dependency in `build.zig`.
```zig
const quickphf_dep = b.dependency("quickphf", .{
.target = target,
.optimize = optimize,
});
const quickphf_mod = quickphf_dep.module("quickphf");
.root_module.addImport("quickphf", quickphf_mod);
```[ci-shd]: https://img.shields.io/github/actions/workflow/status/tensorush/zig-quickphf/ci.yaml?branch=main&style=for-the-badge&logo=github&label=CI&labelColor=black
[ci-url]: https://github.com/tensorush/zig-quickphf/blob/main/.github/workflows/ci.yaml
[cd-shd]: https://img.shields.io/github/actions/workflow/status/tensorush/zig-quickphf/cd.yaml?branch=main&style=for-the-badge&logo=github&label=CD&labelColor=black
[cd-url]: https://github.com/tensorush/zig-quickphf/blob/main/.github/workflows/cd.yaml
[dc-shd]: https://img.shields.io/badge/click-F6A516?style=for-the-badge&logo=zig&logoColor=F6A516&label=docs&labelColor=black
[dc-url]: https://tensorush.github.io/zig-quickphf
[lc-shd]: https://img.shields.io/github/license/tensorush/zig-quickphf.svg?style=for-the-badge&labelColor=black
[lc-url]: https://github.com/tensorush/zig-quickphf/blob/main/LICENSE