nett_hier
nett_hier
This issue doesn't occur when building from git master, maybe bump crate version?
Ah, no problem. This should be fixable by just releasing a new crate version, since master actually runs fine, while the latest version available on crates.io doesn't.
Seems to build fine for me by adding `-Z build-std-features=compiler-builtins-mem` Full command: ``` cargo build --example sample_efi_app -Z build-std=core,alloc -Z build-std-features=compiler-builtins-mem --target x86_64-unknown-uefi ```
It might be useful to mention https://cert-manager.io/docs/projects/trust-manager/ for getting the CAs to mount into the container, should connectivity to external services be required. It's cleaner than manually creating and maintaining...
You're fully correct, I forgot that `Path` behavior is platform-specific. I don't use serde to deserialize paths, but I am doing a lot of joining and getting parents in my...
Interesting, though since the config file is YAML I'd assume it would look like: ```yaml tuples: - group: foo - member: - user: alice - user: bob ``` However, this...
I made a mistake and accidentally provided invalid YAML in my last comment as well. I'd prefer if the file would continue to be YAML-formatted without any custom syntax. My...
The `geojson` feature is also currently not working, because `V` needs to be converted to a `serde_json::Value` in those functions. Adding a `Serialize` bound shouldn't be an issue, but would...
> If this is the only way to keep the geojson feature working, we might as well take advantage of the breaking changes this PR is already making to make...
This could use some tests tbh, but I'm not sure if I have the time and knowledge required to write good ones, let me know how you want to proceed...