basecoin-rs
basecoin-rs copied to clipboard
Investigate having the `Store` store rust types for well-known paths
Currently the Store
stores objects of type Vec<u8>
. This forces us to serialize/deserialize Rust
types before putting them in a Store
.
We should investigate supporting storing predefined Rust types for well-known paths, avoiding the serialization/deserialization cost.
Related: #40