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

deps: Update bitflags and memoffset #28

Merged
merged 3 commits into from Jun 13, 2023

Commits on Jun 12, 2023

  1. Configuration menu
    Copy the full SHA
    36a845d View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2023

  1. Implement suggested traits and use Display over Debug in ntfs-shell.

    bitflags 2.x does not implement `Debug` automatically anymore.
    Docs suggest using `derive`: https://github.com/bitflags/bitflags/blob/395736882672dcfaaf764817af70a9db209f8003/README.md#example
    
    However, the implementation we get via `derive` now prepends the struct name.
    This is not the case for the suggested `Display` implementation, which is why my ntfs-shell example now uses `Display` for the file attribute flags.
    ColinFinck committed Jun 13, 2023
    Configuration menu
    Copy the full SHA
    578c531 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    38ac006 View commit details
    Browse the repository at this point in the history