We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To reduce compilation time and ensure safety via sandboxing, let's provide a watt version of our cqrs-codegen crate.
cqrs-codegen
How it would work:
no-watt
watt
build.rs
src/codegen.wasm
src/lib.rs
cqrs
codegen/no-watt
Let's do it right after completing #2
The text was updated successfully, but these errors were encountered:
Consider rust-lang/cargo#4881 tricks for building codegen.wasm.
codegen.wasm
Sorry, something went wrong.
Seen watt announcement few weeks ago. This is rad. 👍
ffuugoo
Successfully merging a pull request may close this issue.
To reduce compilation time and ensure safety via sandboxing, let's provide a watt version of our
cqrs-codegen
crate.How it would work:
no-watt
feature forcqrs-codegen
crate. So, by default the compilation will usewatt
, but a usual compilation may be opt-in if desirable.cqrs-codegen
crate optional behindno-watt
feature.build.rs
which compilescqrs-codegen
crate intosrc/codegen.wasm
if it's absent.src/lib.rs
.no-watt
feature incqrs
crate ascodegen/no-watt
.Let's do it right after completing #2
The text was updated successfully, but these errors were encountered: