Currently, all our examples are compiled separately, with each having its own Cargo.lock files. This leads to recompilation of shared dependencies like mozak-sdk or rkyv for each example. We should probably use something like scacche to share the build dependencies to avoid recompilation.
Currently, all our examples are compiled separately, with each having its own
Cargo.lock
files. This leads to recompilation of shared dependencies likemozak-sdk
orrkyv
for each example. We should probably use something likescacche
to share the build dependencies to avoid recompilation.