Florian Uekermann
Florian Uekermann
I wanted to use cargo-run-wasm in a crate that wasn't part of a workspace. I can add the details to the readme, but I wanted to check if you are...
Supporting no-game cores should be easy. I didn't send a patch, because there are some decisions to be made. I would suggest adding a `support_no_game: bool` to `CoreInfo` and either...
I just published 0.4.0-beta2 on crates.io and would like to release 0.4.0 in a few days. The main changes are: - Switched to rustls 0.20 - Switched to futures-rustls instead...
Some events may be of interest to users of the simpler `Incoming` api. The exact item type is a bit tricky, because we already have a fully populated `Result`, which...
Replace async-h1.
`cargo build -Z minimal-versions` runs into issues because subdependencies are versioned incorrectly or specify wrong minimal versions. This should probably be resolved upstream.
Pull request #7 highlights that this may be useful for people who want some convenience around the lower level acme API without using the batteries included solution.
Code: https://gopherjs.github.io/playground/#/cCUnbhmC8q ``` func main() { var v map[string][2]float64 var err = json.Unmarshal([]byte(`{"a": [350, 350]}`), &v) fmt.Println(err) } ``` Browser: Chrome Version 59.0.3071.115 (Official Build) (64-bit) on Linux Result: `JavaScript...
The new build system (the gradle stuff) is actually relatively nice (although it took me a whole day to figure out all of the details) and removes the need for...
The NDK implements exploration of asset directories via the `AAssetDir` iterator. I suspect AAssetDir is not thread-safe, so it may be bad idea to copy the iterator model that the...