Rüdiger Klaehn

Results 192 comments of Rüdiger Klaehn

I currently don't have bandwidth to keep up with the tooling changes for sbt etc. But if you update the build script to publish to 2.13 (and drop support for...

So it *should* work, but in my experiments I could not actually get it to work. Just to clarify: websocket is a complete transport that will work just as well...

Here is a first draft of the traits: File https://github.com/rklaehn/sqlite-vfs/blob/main/src/lib.rs#L27 Vfs https://github.com/rklaehn/sqlite-vfs/blob/main/src/lib.rs#L75 Compared to the original, these allow you to specify how to generate randomness and current time. This is...

Should this use `@specialized` or not?

Well, it depends. There are a lot of instances that we could provide. I just copied over the essential (for me) ones. But I think we should at least provide...

You mean completely new versions of HashSet/HashMap/SortedMap that use typeclasses instead of relying on the equals/hashCode, which just does not work for many things such as arrays? Wouldn't this be...

Having even a basic Hash typeclass would be a precondition for writing hash-based collections such as HashSet and HashMap. I understand that there was some discussion regarding that?

One issue I can see is that serde is very well supported in rust, and making something equally convenient to use is going to be incredibly hard. Opting out of...

> Serde is about: I have this native Rust data structure, I want to serialize this somehow in some format. I don't care (that's not fully accurate as Serde has...

So the purpose of tightening the spec is to ensure a unique representation, so you get the same hash for the same data, right? Then why would you not prescribe...