Robin Lambertz

Results 388 comments of Robin Lambertz

> We shouldn't be loading all the module BTFs in from_sys_fs() since that's default. There's a recent issue about Aya memory usage and this will get out of hand pretty...

> AIUI you need this for forward declarations. The base BTF could declare FWD foo where STRUCT foo resides in a module BTF. When resolving type by name you'd want...

`jsonwebtoken` does not support our MSRV. You'll need to downgrade it back to 9.2.0 with `cargo update -p [email protected] --precise 9.2.0`

Updating just the minimum set of crates required for 1.80 compat (so probably time primarily)

CI is fully fixed in #159

C# 8 implemented it with `^`. `x[^0]` is the last element, `x[^5]` is the fifth element from the end. `x[^5..^0]` to get a slice. I guess that's similar from D....