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: taiki-e/cargo-config2
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.26
Choose a base ref
...
head repository: taiki-e/cargo-config2
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.1.27
Choose a head ref
  • 19 commits
  • 25 files changed
  • 2 contributors

Commits on Apr 20, 2024

  1. tools: Update tidy.sh

    taiki-e committed Apr 20, 2024
    Configuration menu
    Copy the full SHA
    0d6e194 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2024

  1. Ignore unexpected_cfgs lint for generated code

    ```
    error: unexpected `cfg` condition name: `rustfmt`
     --> src/gen/is_none.rs:6:13
      |
    6 | #![cfg_attr(rustfmt, rustfmt::skip)]
      |             ^^^^^^^
      |
      = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, `windows`
      = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(rustfmt)");` to the top of the `build.rs`
      = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration
      = note: `-D unexpected-cfgs` implied by `-D warnings`
      = help: to override `-D warnings` add `#[allow(unexpected_cfgs)]`
    
    error: unexpected `cfg` condition name: `rustfmt`
     --> src/gen/de.rs:6:13
      |
    6 | #![cfg_attr(rustfmt, rustfmt::skip)]
      |             ^^^^^^^
      |
      = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(rustfmt)");` to the top of the `build.rs`
      = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration
    ```
    
    Due to rust-lang/rust#124735, we cannot
    disable this lint at module-level.
    taiki-e committed May 5, 2024
    Configuration menu
    Copy the full SHA
    7ea3985 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2024

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

Commits on May 20, 2024

  1. Update cspell dictionary

    taiki-e committed May 20, 2024
    Configuration menu
    Copy the full SHA
    cf5bc03 View commit details
    Browse the repository at this point in the history

Commits on May 24, 2024

  1. Configuration menu
    Copy the full SHA
    83176d5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    af2576a View commit details
    Browse the repository at this point in the history

Commits on May 28, 2024

  1. Configuration menu
    Copy the full SHA
    614d68e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2e30666 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2024

  1. Update cspell dictionary

    taiki-e committed Jun 1, 2024
    Configuration menu
    Copy the full SHA
    757da5f View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2024

  1. tools: Update tidy.sh

    taiki-e committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    bca105a View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2024

  1. Disable clippy::std_instead_of_core lint

    ```
    error: used import from `std` instead of `core`
      --> src/error.rs:34:40
       |
    34 |     WithContext(String, Option<Box<dyn std::error::Error + Send + Sync + 'static>>),
       |                                        ^^^ help: consider importing the item from `core`: `core`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_core
       = note: `-D clippy::std-instead-of-core` implied by `-D warnings`
       = help: to override `-D warnings` add `#[allow(clippy::std_instead_of_core)]`
    
    error: used import from `std` instead of `core`
      --> src/error.rs:66:6
       |
    66 | impl std::error::Error for Error {
       |      ^^^ help: consider importing the item from `core`: `core`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_core
    
    error: used import from `std` instead of `core`
      --> src/error.rs:67:38
       |
    67 |     fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
       |                                      ^^^ help: consider importing the item from `core`: `core`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_core
    
    error: used import from `std` instead of `core`
       --> src/error.rs:141:8
        |
    141 |     E: std::error::Error + Send + Sync + 'static,
        |        ^^^ help: consider importing the item from `core`: `core`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_core
    
    error: used import from `std` instead of `core`
      --> src/cfg_expr/error.rs:96:6
       |
    96 | impl std::error::Error for ParseError {}
       |      ^^^ help: consider importing the item from `core`: `core`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_core
    
    error: used import from `std` instead of `core`
       --> src/resolve.rs:263:17
        |
    263 |         T::Err: std::error::Error + Send + Sync + 'static,
        |                 ^^^ help: consider importing the item from `core`: `core`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_core
    ```
    taiki-e committed Jun 14, 2024
    Configuration menu
    Copy the full SHA
    66568e0 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2024

  1. Configuration menu
    Copy the full SHA
    7b4096b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2602d54 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2024

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

Commits on Aug 4, 2024

  1. Update .deny.toml

    taiki-e committed Aug 4, 2024
    Configuration menu
    Copy the full SHA
    1e52f45 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2024

  1. Configuration menu
    Copy the full SHA
    2cf5221 View commit details
    Browse the repository at this point in the history
  2. Touch up PR 20

    taiki-e committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    d6d664c View commit details
    Browse the repository at this point in the history
  3. Update changelog

    taiki-e committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    513be43 View commit details
    Browse the repository at this point in the history
  4. Release 0.1.27

    taiki-e committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    612641f View commit details
    Browse the repository at this point in the history
Loading