We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When using this crate, a setup such as this one generates an incorrect plist.
#[derive(Serialize)] struct Annoying { #[serde(flatten)] second: Second, } #[derive(Serialize)] struct Second { test: Option<String>, } let test = Annoying { second: Second { test: Some("to".to_string()) } }; println!("plist {}", plist_to_string(&test).unwrap())
Gives the incorrect output of:
<dict> <key>test</key> <dict> <key>Some</key> <string>to</string> </dict> </dict>
Correct output:
<dict> <key>test</key> <string>to</string> </dict>
Thank you.
The text was updated successfully, but these errors were encountered:
Seems to be a duplicate of #55 (comment)
Sorry, something went wrong.
No branches or pull requests
When using this crate, a setup such as this one generates an incorrect plist.
Gives the incorrect output of:
Correct output:
Thank you.
The text was updated successfully, but these errors were encountered: