Sehz
Sehz
Implement same capability https://github.com/bytecodealliance/wit-bindgen/issues/825.
Currently it is hard to find connector because they are nested. I think it's better to flatten all the connector crates similar to fluvio.
Seem like every commit of the master branch is a release workflow. We should separate the release workflow from the development build.
To ensure connector run against supported Fluvio platform
Similar to https://github.com/infinyon/fluvio/blob/master/release-scripts/test-crate-version.sh. This probably can be turn into generic Github Action so it can be used by any repo
Kubernetes uses OpenAPI spec: https://github.com/kubernetes/kubernetes/tree/master/api/openapi-spec to define their api. Generate rust k8-api bindings from the spec which implements Spec trait as in the example: ``` const SERVICE_API: Crd = Crd...
Instead of manual trait implementation like below: ```// // Secret Object const SECRET_API: Crd = Crd { group: "core", version: "v1", names: CrdNames { kind: "Secret", plural: "secrets", singular: "secret",...