9876691
9876691
> > Also, I'd like to build a `grpc-web` proxy but written in rust :) > > https://github.com/gregdhill/rust-grpc-web (cc: @LucioFranco) I have a modified tonic-build which generates a Web gRPC...
> hey @ianpurton ! I'm just wondering. Is this feature about compatibility with SealedSecrets, or to you it would suffice to be compatible with secret decryption? It's about secret decryption....
> There is already some support for decryption mechanisms using [sprig functions](http://masterminds.github.io/sprig/crypto.html). If that's still not enough, I think the better way to support it would be to add some...
> I don't think static file data has any big impact on compile times. I've done some testing on this and it doesn't appear to affect compile times. To test...
> Could be useful. But will the full path to the file be the same on the deployed server as in the build environment? Or would some kind of dist-dir...
If you created the registry with pulumi (for example on azure) you can use the outputs from the registry object to generate your secret. ```typescript const registry = new azure.containerservice.Registry(.......
One way to do this I think is via `build.rs` in 2 stages Say we have an images folder and we add a gif. ``` images/ never-gonna-give-you-up.gif ``` Stage 1...
Hi the approach use by ructe https://github.com/kaj/ructe wouldn't require the hook step. They don't transform the files they just use the files to calculate a hash. So for example ```...
Burn is starting to add ONNX import. https://github.com/burn-rs/burn/tree/main/burn-import/src/onnx Looks like they're using https://github.com/stepancheg/rust-protobuf/ to generate rust code from the onnx.proto file then they generate source code that corresponds to what...
> not sure how the onnx format works It's a protobuf definition https://github.com/onnx/onnx/blob/main/onnx/onnx.proto The way I figured it out is to look at the wonnx examples https://github.com/webonnx/wonnx/blob/master/wonnx/examples/simple_graph.rs. Wonnx has a...