-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RFC: Deserializing to a stream of tagged values #22
Conversation
@kud1ing: Fixed, thanks. |
For reference, I have an experimental repository that implements many of these ideas: https://github.com/erickt/rust-serde. I made it a couple months ago, so it does not run against rust HEAD at the moment. |
I've updated https://github.com/erickt/rust-serde to with with Rust HEAD, assuming rust-lang/rust#14120 lands. @BurntSushi: you expressed interest in playing around with it. I still have some modernization to do on it though. |
@erickt some scattered thoughts:
|
Is this suppose to offer a solution for rust-lang/rust#12794? |
@TheMax: yes this will be able to handle #12794. I've already implemented support for it in https://github.com/erickt/rust-serde. |
6357402
to
e0acdf4
Compare
I'm going to close this RFC for now, since these ideas are embodied in @erickt's serde library. While this may eventually become part of |
fixed 2 small typos
This is an RFC to convert Rust's deserialization framework to produce a stream of tagged values.