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

Various updates #78

Merged
merged 6 commits into from
Feb 24, 2024
Merged

Various updates #78

merged 6 commits into from
Feb 24, 2024

Commits on Feb 24, 2024

  1. actions: Move away from actions-rs

    actions-rs is deprecated, move to dtolnay/rust-toolchain instead.
    
    Fixes: #56
    
    Signed-off-by: Sjoerd Simons <[email protected]>
    sjoerdsimons committed Feb 24, 2024
    Configuration menu
    Copy the full SHA
    6d8d741 View commit details
    Browse the repository at this point in the history
  2. bmap-parser: require Send bounds on traits

    Not having the Send bound on the AsyncSeekForward trait in principle
    makes it easier to match. However it limits where the async copy can be
    used quite a bit. In particular it means it can't be used in a
    tokio::spawn, which is rather a big disadvantage.
    
    So start Send for the trait...
    
    Signed-off-by: Sjoerd Simons <[email protected]>
    sjoerdsimons committed Feb 24, 2024
    Configuration menu
    Copy the full SHA
    05ac00e View commit details
    Browse the repository at this point in the history
  3. Bump versions to 0.2.0

    Bump minor as the trait bounds have changed
    
    Signed-off-by: Sjoerd Simons <[email protected]>
    sjoerdsimons committed Feb 24, 2024
    Configuration menu
    Copy the full SHA
    2a48a93 View commit details
    Browse the repository at this point in the history
  4. clap: Pin to older clap to allow build with rust 1.70

    Claps MSRV is quite aggressive, pin it to 4.4.x to allow building with
    rust 1.70 as currently present in debian testing.
    
    Signed-off-by: Sjoerd Simons <[email protected]>
    sjoerdsimons committed Feb 24, 2024
    Configuration menu
    Copy the full SHA
    497588d View commit details
    Browse the repository at this point in the history
  5. Fix clippy warnings

    Signed-off-by: Sjoerd Simons <[email protected]>
    sjoerdsimons committed Feb 24, 2024
    Configuration menu
    Copy the full SHA
    e4479a4 View commit details
    Browse the repository at this point in the history
  6. parser: Add basic docs for Bmap methods

    Signed-off-by: Sjoerd Simons <[email protected]>
    sjoerdsimons committed Feb 24, 2024
    Configuration menu
    Copy the full SHA
    e3aad32 View commit details
    Browse the repository at this point in the history