Re: [rust-dev] Text encoding

2013-07-29 Thread Thad Guidry
Incidentally, Simon, to get the Rust community to help a bit more with needed libraries, etc..that Servo will need... Where are the current "needs" of Servo listed at ? are they on the Roadmap ? https://github.com/mozilla/servo/wiki/Roadmap or somewhere else ? On Mon, Jul 29, 2013 at 1:18 PM,

Re: [rust-dev] Text encoding

2013-07-29 Thread Fredrik Håård
Added a MIT license. 2013/7/29 Simon Sapin : > Le 29/07/2013 18:58, Fredrik Håård a écrit : > >> I wrote an implementation of text encoding/decoding for ISO*<->Unicode >> in Rust, available here:https://github.com/haard/rust-codecs >> >> I use approximately the same technique as the cpython implem

Re: [rust-dev] Text encoding

2013-07-29 Thread Simon Sapin
Le 29/07/2013 18:58, Fredrik Håård a écrit : I wrote an implementation of text encoding/decoding for ISO*<->Unicode in Rust, available here:https://github.com/haard/rust-codecs I use approximately the same technique as the cpython implementation, and it works by parsing unicode.org specification

Re: [rust-dev] Text encoding

2013-07-29 Thread Kang Seonghoon
Wow, it *is* indeed a coincidence: I'm also working on the character encoding library. https://github.com/lifthrasiir/rust-encoding Although this one is much more sophiscated that it supports an API for error detection and recovery. I'm not sure the whole library merits the inclusion however, as

[rust-dev] Text encoding

2013-07-29 Thread Fredrik Håård
I wrote an implementation of text encoding/decoding for ISO*<->Unicode in Rust, available here: https://github.com/haard/rust-codecs I use approximately the same technique as the cpython implementation, and it works by parsing unicode.org specifications and generating Rust source; a charmap for ea