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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump minimum declared versions of dependencies #404

Merged
merged 2 commits into from Mar 24, 2024

Commits on Mar 21, 2024

  1. Add check-minimal action to GH workflows

    Runs cargo check on nightly requesting a build with minimum versions of
    dependencies declared as supported.
    dextero committed Mar 21, 2024
    Configuration menu
    Copy the full SHA
    33a1f68 View commit details
    Browse the repository at this point in the history
  2. Bump required dependency versions

    To minimal versions required to build most features (all other than core
    and rustc-dep-of-std) with --all-targets.
    
    Minimal required versions discovered by manual binsearch between
    minimum compatible version declared currently and the newest one
    available, and rerunning
    
      cargo check --all \
        --features serde,arbitrary,bytemuck,std,example_generated \
        --all-targets -Z minimal-versions
    
    to verify if it builds.
    dextero committed Mar 21, 2024
    Configuration menu
    Copy the full SHA
    4b535a7 View commit details
    Browse the repository at this point in the history