-
Notifications
You must be signed in to change notification settings - Fork 17
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
Add serde support to concrete units #77
Conversation
The CI failure is unrelated: rust-lang/rust#77638 |
Includes #78 to get CI working on nightly. |
Thanks for this! I'll get this reviewed and pulled. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good to me. Thanks for the effort!
Ping @PTaylor-us |
This was stabilized in Cargo 1.51. Leaving the example crate for now to support older stable versions.
Enabling the serde support increases the number of built crates from 16 to 30 and doubles the clean build time on my 16-thread machine from 9s to 18s. We could enable the feature by default but it is nice to provide the option to disable it for people who care about such things. |
It's common practice to have |
Thank you for this! |
Fixes #55