Marc-Antoine ARNAUD

Results 34 comments of Marc-Antoine ARNAUD

Yep I think like in every library who manage XML ... It's still the same problem of naming. But yep adding a prefix can made sense (which need to be...

it's interesting @anton-dutov, in this formulation `#[serde(rename = "$xml:attr:name")]` we can also address the namespace like: `#[serde(rename = "$xml:ns:name")]` (issue #50). On my side it looks the most relevant solution.

Looks cool. Just a question: is it required to une an XPath ? In your case it can be defined in rust like: ```rust struct Reply { #[serde(rename = "$xml:path:Container")]...

Yes made sense. So do you think we can purpose Serde to add the field target to solve that ? ```rust #[rename(rename = "container", target=json)] #[rename(rename = "$xml:path:Container", target=xml)] field:...

Regarding exchange with Serde Core developers, I started a new project to support that. You can found it here: https://github.com/media-io/yaserde

@Boscop please follow the discussion [here](https://github.com/media-io/yaserde/issues/1).

Old issue !! héhé I have created a project named [Yaserde](https://github.com/media-io/yaserde) to handle all specific features of XML. It can be possible to use Yaserde with Serde, so like that...

Cool good news ! It will be awesome to add domain name check. I don't know/remember with oauth2 where this limitation is set. (It opens also the idea of domain...

Yes I think too. But ideally it can be awesome if a configuration parameter can change that.