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

Add binding for git_message_trailers #749

Merged
merged 20 commits into from Oct 18, 2021
Merged

Add binding for git_message_trailers #749

merged 20 commits into from Oct 18, 2021

Commits on Oct 3, 2021

  1. Copy the full SHA
    15a7d4e View commit details
    Browse the repository at this point in the history
  2. cargo fmt

    LemmingAvalanche committed Oct 3, 2021
    Copy the full SHA
    5575c3d View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2021

  1. Fix pointer mismatch error

    Fix error from `cargo run --manifest-path systest/Cargo.toml;`.
    
    You can’t just mix and match `*mut` and `*const` like that.
    LemmingAvalanche committed Oct 11, 2021
    Copy the full SHA
    33ebdcd View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2021

  1. Remove a lot of unnecessary lifetimes

    Suggested-by: Alex Crichton <alex@alexcrichton.com>
    See: #749 (comment)
    LemmingAvalanche committed Oct 12, 2021
    Copy the full SHA
    f6fd4b7 View commit details
    Browse the repository at this point in the history
  2. Remove another unnecessary lifetime

    Suggested-by: Alex Crichton <alex@alexcrichton.com>
    See: #749 (comment)
    LemmingAvalanche committed Oct 12, 2021
    Copy the full SHA
    b0015cc View commit details
    Browse the repository at this point in the history
  3. Use Range<usize> instead of usize

    I love it.
    
    Suggested-by: Alex Crichton <alex@alexcrichton.com>
    See: #749 (comment)
    LemmingAvalanche committed Oct 12, 2021
    Copy the full SHA
    e94008a View commit details
    Browse the repository at this point in the history
  4. cargo fmt

    LemmingAvalanche committed Oct 12, 2021
    Copy the full SHA
    e830f7d View commit details
    Browse the repository at this point in the history
  5. Inline one-off struct

    Suggested-by: Alex Crichton <alex@alexcrichton.com>
    See: #749 (comment)
    LemmingAvalanche committed Oct 12, 2021
    Copy the full SHA
    55ea909 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2021

  1. Implement more iterators

    Also change `to_str_tuple(…)` in order to share more code between two of
    the iterators.
    
    Suggested-by: Alex Crichton <alex@alexcrichton.com>
    See: #749 (comment)
    LemmingAvalanche committed Oct 14, 2021
    Copy the full SHA
    e7b0306 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    cd4c2db View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2021

  1. Copy the full SHA
    e450945 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    a0bd026 View commit details
    Browse the repository at this point in the history
  3. Correct len(…)

    LemmingAvalanche committed Oct 15, 2021
    Copy the full SHA
    34fa7b5 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    023fb92 View commit details
    Browse the repository at this point in the history
  5. Implement size_hint()

    Better than the default implementation.
    
    See: #749 (comment)
    LemmingAvalanche committed Oct 15, 2021
    Copy the full SHA
    16321f3 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2021

  1. Split into “bytes” and “string” iterators

    Support both raw bytes messages as well as normal (UTF-8) messages by
    making two iterators.
    
    See: #749 (comment)
    LemmingAvalanche committed Oct 16, 2021
    Copy the full SHA
    70b7ebd View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    ed11c76 View commit details
    Browse the repository at this point in the history
  3. Docs

    LemmingAvalanche committed Oct 16, 2021
    Copy the full SHA
    958e378 View commit details
    Browse the repository at this point in the history
  4. cargo fmt

    LemmingAvalanche committed Oct 16, 2021
    Copy the full SHA
    2508506 View commit details
    Browse the repository at this point in the history
  5. Undo accidental and unrelated edit

    (cherry picked from commit cd4c2db)
    LemmingAvalanche committed Oct 16, 2021
    Copy the full SHA
    f35b68f View commit details
    Browse the repository at this point in the history