| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| | |
|
| | |
|
| | |
|
| |
|
| |
Co-authored-by: Andrew Kelley <andrew@ziglang.org>
|
| |
|
|
| |
update to follow latest for loop syntax
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
Rename `builtin.Struct.field_type` to `builtin.Struct.type`.
|
| | |
|
| | |
|
| |
|
|
| |
toOwnedSlice() now returns an error union
|
| | |
|
| |
|
|
| |
Instead, cicd will now have a job for every configuration
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bumps [goto-bus-stop/setup-zig](https://github.com/goto-bus-stop/setup-zig) from 1.3.0 to 2.0.1.
- [Release notes](https://github.com/goto-bus-stop/setup-zig/releases)
- [Changelog](https://github.com/goto-bus-stop/setup-zig/blob/default/CHANGELOG.md)
- [Commits](https://github.com/goto-bus-stop/setup-zig/compare/v1.3.0...v2.0.1)
---
updated-dependencies:
- dependency-name: goto-bus-stop/setup-zig
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
Syncs with latest zig master version 0.10.0-dev.4117+54854e2ab
|
| |
|
|
|
| |
Also enable test suit for both stage 1 and stage 2, to ensure we don't
break things for people who haven't switched yet.
|
| |
|
|
| |
fixes #79
|
| | |
|
| |
|
|
| |
closes #78
|
| | |
|
| |
|
| |
related #77
|
| | |
|
| | |
|
| |
|
|
| |
fixes \#28
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
| |
This new parser stops when it hits something that looks like a new
parameter. This is the precurser to parsing multiple parameters in a
single function.
|
| |
|
|
| |
fixes #72
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
This changes
- `.flag`, `.option`, `.options` and `.positionals` are now just fields
you access on the result of `parse` and `parseEx`.
- `clap.ComptimeClap` has been removed.
- `clap.StreamingClap` is now called `clap.streaming.Clap`
- `parse` and `parseEx` now takes a `value_parsers` argument that
provides the parsers to parse values.
- Remove `helpEx`, `helpFull`, `usageEx` and `usageFull`. They now just
expect `Id` to have methods for getting the description and value
texts.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2.4.0...v3)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
|
| |
|
|
| |
This reverts commit cfaac64c404fb1c2e892880410aa3b7dd881ea58.
|
| |
|
|
|
|
|
|
|
| |
This changes
- `.flag`, `.option`, `.options` and `.positionals` are now just fields
you access.
- Move the current `clap.parse` and friends into `clap.untyped.parse`
- This is in preperation for `clap.typed.parse`
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
| |
They now follow the interface provided by the standard library. This now
means that we no longer needs `args.OsIterator` as that the one from
`std` can now be used directly.
Also remove `args.ShellIterator` as a simular iterator exists in `std`
called `ArgIteratorGeneral`.
|
| |
|
|
| |
closes #64
|
| |
|
|
|
|
| |
The current Zig print API is quite good at slowing down compilation and
producing binary bloat. This commit makes an attempt to avoid using it
when not nessesary.
|
| |
|
|
|
| |
Also add windows CI, as this compiler error was only triggered on
windows builds
|
| | |
|
| |
|
|
|
| |
It makes more sense to have the master branch follow zig master, and
then create versioned branches to backport bug fixes to if nessesary
|
| |\ |
|
| | | |
|
| | |
| |
| |
| |
| | |
The importing of builtin was already fixed, so the latest commit applied
this fix again, which caused problems
|