Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dtolnay/quote
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.38
Choose a base ref
...
head repository: dtolnay/quote
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.40
Choose a head ref
  • 11 commits
  • 6 files changed
  • 2 contributors

Commits on Jan 23, 2025

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

Commits on Jan 30, 2025

  1. Resolve doc_overindented_list_items clippy lint

        warning: doc list item overindented
          --> src/format.rs:29:5
           |
        29 | ///    unsigned integers and strings.
           |     ^^^ help: try using `  ` (2 spaces)
           |
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_overindented_list_items
           = note: `-W clippy::doc-overindented-list-items` implied by `-W clippy::all`
           = help: to override `-W clippy::all` add `#[allow(clippy::doc_overindented_list_items)]`
    dtolnay committed Jan 30, 2025
    Configuration menu
    Copy the full SHA
    4d071e3 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2025

  1. Unset doc-scrape-examples for lib target

    False is the default value since Cargo PR 11499.
    dtolnay committed Feb 10, 2025
    Configuration menu
    Copy the full SHA
    fa46189 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2025

  1. Configuration menu
    Copy the full SHA
    ddbabd5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b723616 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2025

  1. Ignore elidable_lifetime_names pedantic clippy lint

        warning: the following explicit lifetimes could be elided: 'a
          --> src/to_tokens.rs:86:6
           |
        86 | impl<'a, T: ?Sized + ToOwned + ToTokens> ToTokens for Cow<'a, T> {
           |      ^^                                                   ^^
           |
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names
           = note: `-W clippy::elidable-lifetime-names` implied by `-W clippy::pedantic`
           = help: to override `-W clippy::pedantic` add `#[allow(clippy::elidable_lifetime_names)]`
        help: elide the lifetimes
           |
        86 - impl<'a, T: ?Sized + ToOwned + ToTokens> ToTokens for Cow<'a, T> {
        86 + impl<T: ?Sized + ToOwned + ToTokens> ToTokens for Cow<'_, T> {
           |
    
        warning: the following explicit lifetimes could be elided: 'a
           --> src/runtime.rs:313:10
            |
        313 |     impl<'a> Iterator for Lifetime<'a> {
            |          ^^                        ^^
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names
        help: elide the lifetimes
            |
        313 -     impl<'a> Iterator for Lifetime<'a> {
        313 +     impl Iterator for Lifetime<'_> {
            |
    
        warning: the following explicit lifetimes could be elided: 'a
           --> src/runtime.rs:345:10
            |
        345 |     impl<'a> Iterator for Lifetime<'a> {
            |          ^^                        ^^
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names
        help: elide the lifetimes
            |
        345 -     impl<'a> Iterator for Lifetime<'a> {
        345 +     impl Iterator for Lifetime<'_> {
            |
    dtolnay committed Mar 3, 2025
    Configuration menu
    Copy the full SHA
    dd15f29 View commit details
    Browse the repository at this point in the history
  2. Release 1.0.39

    dtolnay committed Mar 3, 2025
    Configuration menu
    Copy the full SHA
    7d089f5 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2025

  1. Configuration menu
    Copy the full SHA
    5998437 View commit details
    Browse the repository at this point in the history
  2. fix: set span on tick

    aatifsyed committed Mar 11, 2025
    Configuration menu
    Copy the full SHA
    7a143c7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3ff6882 View commit details
    Browse the repository at this point in the history
  4. Release 1.0.40

    dtolnay committed Mar 11, 2025
    Configuration menu
    Copy the full SHA
    ab1e92c View commit details
    Browse the repository at this point in the history
Loading