Skip to content
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

Compile serde_derive separately from serde #87

Commits on Sep 2, 2023

  1. Compile serde_derive separately from serde

    When serde's derive feature is used, serde_derive must be
    compiled before serde can be, as serde with that feature has a
    serde_derive dependency.
    
    As of serde 1.0.186, this issue can be avoided by adding a separate
    serde_derive dependency due to the fact that serde 1.0.186 has a
    never-applicable dependency on serde_derive, which ensures that
    there is no incompatible version of serde_derive in a program [1].
    
    Because MSRV being set to 1.36, it's not possible to use the dep:
    syntax in features, so serde crate needs to be renamed.
    
    This should improve compilation times of programs that use either
    with its serde feature, provided it doesn't have other crates that
    use serde with its derive feature.
    
    Fixes rayon-rs#86.
    
    [1]: serde-rs/serde#2588
    KamilaBorowska committed Sep 2, 2023
    Configuration menu
    Copy the full SHA
    d08d2f4 View commit details
    Browse the repository at this point in the history