Remoun Metyas
Remoun Metyas
Update `digest`, `sha2`, `rand` to latest Also fix a `warning: variant is never constructed: ArrayLengthError`
Update all deps to latest.
Fixes `Warning: Operand of null-aware operation '?.' has type 'WidgetsBinding' which excludes null.`
https://docs.rs/protobuf just released v3, with changes that make generated code to fail to compile.
We use `buf generate` for generating code from protobufs. I've been integrating this step in build scripts with: ```kotlin // Add a task dependency for compilation tasks.named("compileJava").configure { dependsOn("bufGenerate") }...