aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.zig
Commit message (Collapse)AuthorAgeFilesLines
* Update code for Zig devLibravatar Rutger Broekhoff2023-12-041-5/+5
| | | | This code was tested on zig-dev-bin-1:0.12.0_dev.1773+8a8fd47d2-1 (AUR)
* Fix CILibravatar Rutger Broekhoff2023-12-041-8/+8
| | | | | | I am aware that changing these variables to be constants is not required for the next Zig release, but thought it would be nice to already have it done and clean in general.
* Update for Zig 0.11.0Libravatar Rutger Broekhoff2023-11-011-6/+6
|
* Make compatible with Zig devLibravatar Rutger Broekhoff2022-11-011-7/+7
| | | | | This library can be compiled again, now that ziglang/zig#13378 has been closed by ziglang/zig#13386.
* Make compatible with Zig 0.10.0Libravatar Rutger Broekhoff2022-10-311-41/+44
| | | | | | | This does not build on unpatched Zig 0.10.0, as there is still an issue with the revamped Ed25519 implementation in the standard library. I will report an issue which should make this program buildable. There is still some cleanup work to perform.
* Make compatible with Zig master0.3.1Libravatar Rutger Broekhoff2021-09-201-4/+4
|
* Remove unused parameters and variablesLibravatar Rutger Broekhoff2021-07-021-6/+4
|
* Use `.{ ... }` for struct init where possibleLibravatar Rutger Broekhoff2021-05-281-7/+7
|
* Move src/lib.zig to src/main.zig, release 0.2.00.2.0Libravatar Rutger Broekhoff2021-05-261-0/+729
Rationale: `zig init-lib` generates src/main.zig, not src/lib.zig. Also, libraries like hzzp (https://github.com/truemedian/hzzp) use src/main.zig instead of src/lib.zig. This is a breaking change.