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

misc: Display consistency #165

Merged
merged 2 commits into from
Sep 10, 2024
Merged

Commits on Sep 10, 2024

  1. cargo: update rust edition to 2021

    This is required to make use of CStr literals - null terminated
    string literals, e.g. c"foobarbaz".
    
    We needed to adjust a code in one place. Starting from edition 2021,
    closures capture only the object's fields that are actually used (instead
    of captuting whole object). In our case, we would capture underlying
    pointer, which is not `Send` (instead of a whole wrapper, which
    has an unsafe Send implementation).
    muzarski committed Sep 10, 2024
    Configuration menu
    Copy the full SHA
    060624f View commit details
    Browse the repository at this point in the history
  2. misc: display consistency

    muzarski committed Sep 10, 2024
    Configuration menu
    Copy the full SHA
    714e219 View commit details
    Browse the repository at this point in the history