Rüdiger Klaehn
Rüdiger Klaehn
I have worked with indexeddb several times. Every time it was nothing but pain and suffering. Last time I tried something demanding with indexeddb (implementing a blob store for in-browser...
Currently, structural sharing will only work perfectly for the lhs of branches. This should be symmetric. Also, there should be tests for structural sharing.
This is similar, but not quite the same as https://github.com/serde-rs/json/issues/497. In this case it is a normally tagged enum. Rust playground example: https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=4d9015b013535f143aa5b8ad829be43c Code: ```rust use serde_json::value::RawValue; use serde::{Serialize, Deserialize};...
Sometimes it would be useful to have `Clone` instances for the encoder and decoder states, like e.g. `zstd::stream::raw::Encoder` / `Decoder`. E.g. you have compressed a bunch of data, and then...
It would be nice if rusqlite had an **official** way to hoop up a custom VFS. This is frequently needed when using sqlite in "unusual" environments, such as wasm. There...
Add instances for arrays. Arrays are essential in many cases for compact representation, so I think having array instances would be good. I care most about really basic things like...
There should be an option to serialize sealed trait hierarchies with only case object values to just a string.
I have started a [Munich IPFS user group](https://www.meetup.com/de-DE/Munich-IPFS-User-Group/). The initial meetings will be focused on getting started with hosting your content on IPFS, e.g. [Publishing a blog](http://blog.klaehn.org/2018/06/06/publish-blog-on-ipfs/) or [Hosting static...
I have a situation where I have a memory mapped file and want to pass a slice of it around unencumbered by lifetimes, but without copying. I have looked into...