jac-cbi
jac-cbi
In the interim, would it be possible just to warn the user that if both RUSTFLAGS is set and .cargo/config exists, "WARN: $RUSTFLAGS overrides anything set in .cargo/config when it...
@andrewheberle Could you provide some more detail? What OS/distro/arch are you running on? What is the command line used to launch `cloudflared`?
I think I might have encountered a similar, but different bug. I'm struggling to create a concise test case replicating the error. ``` thread 'requests::tests::basic_request_list' panicked at 'called `Result::unwrap()` on...
Ok, I was able to reproduce the error with a unit test inside of `serde-xml-rs` https://github.com/jac-cbi/serde-xml-rs/tree/fix/enum_vec_single_element @punkstarman pls take a look
If you put the `enum` fields in alpha order, no error (`B` before `C`), but if `B` is after `C`, it blows up.
Ok, making progress on understanding how this works. My current theory is that data structures containing `Vec` of elements within a `Vec` of elements blows up. Here's why: It seems...
I've added some more unit tests attempting to isolate the bug. It seems that `Vec` where the enum elements contain `Vec` elements themselves is the core use case. `enum` is...
I reworked my code to not use `Vec` at all. Looks good so far. The core problem is that nested `Vec` just can't handle `enum` types in either the outer...
So I'm not good at GitHub. But it appears this has diverged significantly from the original issue. I'd like to keep this convo intact, but it should really be a...
The Server is Gentoo, updated daily. OpenSSH 9.3_p1. I've not tried other locations. This is my primary server, that I completely control. So I usually test there first. I just...