Arnav Singh
Arnav Singh
>The fact that some widgets require `Vec` instead of iterators only make it public that they need to know the entire input data before starting to draw something. Could they...
https://docs.rs/rio/0.9.4/rio/struct.Completion.html#safety As long as you respect that, the CVE does not affect you.
This was a semver breaking change since `textwrap::Options` is an exhaustive struct with `pub` fields. Code like: ```rust fn textwrap_options() -> textwrap::Options
>I'm curious through, do you have code like that? [Yes.](https://github.com/Arnavion/fac-rs/blob/b24702c7844ea7a4601d75b3edd92f276b81bf1f/src/main.rs#L166-L176) It failed to compile yesterday and that's why I started investigating and reached here. >Why would you write it like...
Yeah, in that case you can make it `#[non_exhaustive]` to prevent this from happening in the future.
If any crate depends on ^0.15.1 explicitly, it would normally be doing so because it depends on API newly added in 0.15.1, so it wouldn't work with 0.15.0 released as...
That's fine, but I hope you defensively bump every dep you have in every commit you make, no matter how unrelated it is. After all you might have added foo...
`k8s-openapi-codegen` has been able to generate bindings from arbitrary file path or URL for quite some time: https://github.com/Arnavion/k8s-openapi/blob/5a079ad7abd5022f62839aa0501a0ab3b57599bd/k8s-openapi-codegen/src/main.rs#L125-L143 It's not meant for general purpose use outside the k8s-openapi crate, but...
Specifically, winapi's build script for the gnu targets adds an additional library directory via [`cargo:rustc-link-search=native=`](https://github.com/retep998/winapi-rs/blob/0.3/x86_64/build.rs#L16) (`-L native=C:\Users\appveyor\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-x86_64-pc-windows-gnu-0.4.0\lib` in OP's case). When skeptic invokes rustc itself it doesn't include this parameter....
I hit the same `Runtime is not supported.` with `az functionapp config appsettings set ...`, ie `raise ValidationError(f"Runtime {app_runtime} is not supported.")` but `app_runtime` is `""`. Call stack ``` Traceback...