jonas-schievink/xml-rpc-rs

Support non-UTF-8 encodings

Ouverte

#43 ouverte le 7 juil. 2018

 (0 commentaire) (0 réaction) (0 personne assignée)Rust (21 forks)github user discovery
enhancementhelp wanted

Métriques du dépôt

Stars
 (27 étoiles)
Métriques de merge PR
 (Aucune PR mergée en 30 j)

Description

We're currently using xml-rs to parse XML, which only supports UTF-8 (https://github.com/netvl/xml-rs/issues/10).

To do this, either xml-rs needs to get support for other encodings or we have to switch to quick-xml which does support non-UTF-8 documents (but needs some work - it needs to be better tested and doesn't support encodings that aren't ASCII-compatible).

Note that the XML-spec mandates UTF-8 and UTF-16 support, so xml-rs is technically non-compliant (as is this crate).

Guide contributeur