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/trybuild
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.61
Choose a base ref
...
head repository: dtolnay/trybuild
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.63
Choose a head ref
  • 17 commits
  • 8 files changed
  • 1 contributor

Commits on May 22, 2022

  1. Ignore derive_partial_eq_without_eq clippy lint

        error: you are deriving `PartialEq` and can implement `Eq`
         --> src/env.rs:4:10
          |
        4 | #[derive(PartialEq, Debug)]
          |          ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
          |
          = note: `-D clippy::derive-partial-eq-without-eq` implied by `-D clippy::all`
          = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derive_partial_eq_without_eq
    
        error: you are deriving `PartialEq` and can implement `Eq`
          --> src/normalize.rs:84:22
           |
        84 | #[derive(PartialOrd, PartialEq, Copy, Clone)]
           |                      ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
           |
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derive_partial_eq_without_eq
    dtolnay committed May 22, 2022
    Configuration menu
    Copy the full SHA
    0e96a0d View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2022

  1. Configuration menu
    Copy the full SHA
    b39ee4a View commit details
    Browse the repository at this point in the history
  2. Merge pull request #176 from dtolnay/cratename

    Read crate name from manifest instead of CARGO_PKG_NAME env
    dtolnay authored Jun 4, 2022
    Configuration menu
    Copy the full SHA
    0a065ff View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    79d46bf View commit details
    Browse the repository at this point in the history
  4. Merge pull request #177 from dtolnay/manifestdir

    Search for Cargo.toml if CARGO_MANIFEST_DIR not set
    dtolnay authored Jun 4, 2022
    Configuration menu
    Copy the full SHA
    8934f51 View commit details
    Browse the repository at this point in the history
  5. Release 1.0.62

    dtolnay committed Jun 4, 2022
    Configuration menu
    Copy the full SHA
    5fd4729 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2022

  1. Configuration menu
    Copy the full SHA
    ce82d18 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bccab83 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #178 from dtolnay/expand

    Move glob expansion to new module
    dtolnay authored Jun 5, 2022
    Configuration menu
    Copy the full SHA
    0256bd5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    616b8f8 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #179 from dtolnay/expand

    Factor out a data structure for building a set of expanded test
    dtolnay authored Jun 5, 2022
    Configuration menu
    Copy the full SHA
    dba6ac4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ea9284d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    74c76f3 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #180 from dtolnay/override

    Deduplicate glob-expanded tests by path
    dtolnay authored Jun 5, 2022
    Configuration menu
    Copy the full SHA
    394a84b View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    0713c4e View commit details
    Browse the repository at this point in the history
  10. Merge pull request #181 from dtolnay/override

    Only do overriding of pass/fail status for tests expanded from glob
    dtolnay authored Jun 5, 2022
    Configuration menu
    Copy the full SHA
    2897a9f View commit details
    Browse the repository at this point in the history
  11. Release 1.0.63

    dtolnay committed Jun 5, 2022
    Configuration menu
    Copy the full SHA
    b917900 View commit details
    Browse the repository at this point in the history
Loading