Arnav Singh
Arnav Singh
>>It does use them while its running - while the future is running. This will be the natural way to think about things when the natural thing to do is...
My initial feeling was that the codegen would be manually fixed up a bit first instead of being used directly. You can see it in the example in the OP...
>Is everything in the `api` namespace? - `io.k8s.apiextensions-apiserver` and `io.k8s.apimachinery` have custom resource- and schema validation-related definitions. - `io.k8s.kube-aggregator` has aggregated API server-related definitions. - `io.k8s.kubernetes.pkg` has definitions that were...
Done. ```toml # Cargo.toml [dependencies] k8s-openapi = { git = "https://github.com/Arnavion/k8s-openapi-codegen", branch = "master" } ``` ```rust // main.rs extern crate k8s_openapi; fn main() { let pod_spec: k8s_openapi::api::core::v1::PodSpec = Default::default();...
https://crates.io/crates/k8s-openapi/ is now published, with multiple supported versions of Kubernetes (version-specific modules gated by features) and a client API based on the `http` crate that works with both sync and...
This will be fixed if the macro expansion uses UFCS `Clone::clone(arg)` instead of `arg.clone()`, ie #111 As I wrote there, the macro can be forced to use UFCS by annotating...
This is also a problem with using Fiddler to intercept https connections. Currently `InitializeSecurityContext` fails with `CRYPT_E_NO_REVOCATION_CHECK 0x80092012 The revocation function was unable to check revocation for the certificate.` which...
It doesn't have one at all - I think that's what makes it invalid unless `SCH_CRED_IGNORE_NO_REVOCATION_CHECK` is passed in. It's probably because it's dynamically generated when you enable the "Decrypt...
Sorry, ignore me. The error is from rustup's curl backend. If I force it to use the hyper backend (that uses rust-native-tls and thus schannel-rs) there's no problems with Fiddler.
There is precedent [[1]](https://webpack.github.io/docs/configuration.html#output-library) [[2]](https://github.com/rollup/rollup/wiki/JavaScript-API#modulename) for compilers that output UMD to take a separate parameter for the global name. But I guess since you already have `export as namespace` you...