-
Notifications
You must be signed in to change notification settings - Fork 80
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
Serde Support #40
Comments
Well, INI file format is a flat format, which is a pure and simple |
I think it's nice to have! It's much cleaner and simpler to let serde parse the values into the correct types, instead of doing that by hand. So I would think this is worth supporting. |
PR is welcomed. Because I don't have time recently :( |
I'll try to do this, though I can't guarantee I'll have the time either. |
I would also like this. I am trying my hands at it but proc_macro stuff is not something i have worked with before. My goal is to support sections and allow duplicate ones to make a Vec<...> out of it. @kirawi have you made any progress? Other than that, great crate, it's the only one that supported the ini files i am trying to parse that i could find, EDIT: Forgot to mention that it's not using serde right now, just doing it "manually" so to speak. |
Honestly, I'll admit I completely forgot 😅 you can go ahead. |
Haha xd |
What are your thoughts on adding serde support so you can serialize to/deserialize from an INI file? Along the same lines as serde_json, toml, or serde_xml.
The text was updated successfully, but these errors were encountered: