Ning Sun
Ning Sun
Thank you for your patch! Instead of creating a new method for this, I'm +1 for your idea of using generics. I'm working on 4.0 so even a little break...
This looks great to me! Please go ahead.
I'm using this setup https://medium.com/@ianjsikes/get-started-with-rust-webassembly-and-webpack-58d28e219635 to compile. As of 2017-06-24, Chromium 59.0.3071.109, Firefox 54 and emscripten 1.37.14, I'm getting this error when call my `compile` function: ``` Uncaught (in promise)...
@dbousamra handlebars now compiles on webassembly. But a JavaScript API is not ready. If you are interested I can offer help for you to hack on it.
@dbousamra if you are on nodejs, perhaps handlebars-rust can be loaded as a native dependency, instead of webassembly module. Libraries like [neon](https://github.com/neon-bindings/neon) may help.
Our benchmark is highly CPU-intensive, so the condition of your system and CPU throttle matters. Could you please verify if `block_box` really help?
`ToGeo` and `FromGeo` works for me, too.
@mgax I thought `FromWkt` and `ToWkt` is more straightforward at the beginning. But in Rust you cannot implement traits on a struct outside the crate it is defined. That means,...
@mgax cool, then I will back `FromWkt` style naming. @frewsxcv `ToWkt / FromWkt` will be defined in rust-wkt crate, that's a feature as @mgax said. rust-geo won't depend on rust-wkt.
Just found we have done pretty much about types in geojson. I will pick some types from geojson and find a boundary between this base type system and geojson-specific things.