Kevin K.
Kevin K.
**DO NOT MERGE** This small change allows running `cargo-open` standalone _as well as_ as a subcommand of `cargo`...well, _almost_. Running `cargo open ` works as expected. Running `cargo-open ` also...
Languages are simple to add.... so trying to think of a list of ones to add ## Languages - [x] ASM - [x] Shell - [x] D - [x] Nim
Relates to #3 Need a way to conditionally compile binary...this would also make it awesome because you could selectively install subcommands via `features`
This requires a nightly compiler - so the blocking issue is a way to conditionally compile a binary
First, thanks for this application! We use a kanban board at work, but the work flow includes linked cards to track larger initiatives that themselves have cards (i.e. items larger...
This commit uses [clap](https://github.com/clap-rs/clap) to handle command line arugments instead of a custom rolled solution. The benefit that `clap` handles all validation as well as providing many "quality of life"...
(Side Note, sorry for all the issues I'm submitting...I"m in the middle of refactoring a large number of Toastfiles so it's on my mind :smile: I'm also a big fan...
I've been working on the networking portion of `redbpf-probes` to address #78 (mutating packets) as well as abstracting over `XdpContext` and `SkBuff` in a cohesive manner (since one is directly...
When writing a `tc` BPF program, one section performs a [`bpf_fib_lookup`](https://ingraind.org/api//redbpf_probes/helpers/gen/fn.bpf_fib_lookup.html) ([`bpf-helpers(7)`](https://man7.org/linux/man-pages/man7/bpf-helpers.7.html)). However, when initializing the struct used as the `params` argument ([`*mut bpf_fib_lookup`](https://ingraind.org/api//bpf_sys/struct.bpf_fib_lookup.html)) the verifier rejects the program with...