-
-
Notifications
You must be signed in to change notification settings - Fork 4
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
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
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
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
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 19 commits
- 25 files changed
- 2 contributors
Commits on Apr 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 0d6e194 - Browse repository at this point
Copy the full SHA 0d6e194View commit details
Commits on May 5, 2024
-
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.
Configuration menu - View commit details
-
Copy full SHA for 7ea3985 - Browse repository at this point
Copy the full SHA 7ea3985View commit details
Commits on May 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a42ac7d - Browse repository at this point
Copy the full SHA a42ac7dView commit details
Commits on May 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for cf5bc03 - Browse repository at this point
Copy the full SHA cf5bc03View commit details
Commits on May 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 83176d5 - Browse repository at this point
Copy the full SHA 83176d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for af2576a - Browse repository at this point
Copy the full SHA af2576aView commit details
Commits on May 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 614d68e - Browse repository at this point
Copy the full SHA 614d68eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2e30666 - Browse repository at this point
Copy the full SHA 2e30666View commit details
Commits on Jun 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 757da5f - Browse repository at this point
Copy the full SHA 757da5fView commit details
Commits on Jun 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for bca105a - Browse repository at this point
Copy the full SHA bca105aView commit details
Commits on Jun 14, 2024
-
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 ```
Configuration menu - View commit details
-
Copy full SHA for 66568e0 - Browse repository at this point
Copy the full SHA 66568e0View commit details
Commits on Jun 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7b4096b - Browse repository at this point
Copy the full SHA 7b4096bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2602d54 - Browse repository at this point
Copy the full SHA 2602d54View commit details
Commits on Jul 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2a49c28 - Browse repository at this point
Copy the full SHA 2a49c28View commit details
Commits on Aug 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1e52f45 - Browse repository at this point
Copy the full SHA 1e52f45View commit details
Commits on Aug 19, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2cf5221 - Browse repository at this point
Copy the full SHA 2cf5221View commit details -
Configuration menu - View commit details
-
Copy full SHA for d6d664c - Browse repository at this point
Copy the full SHA d6d664cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 513be43 - Browse repository at this point
Copy the full SHA 513be43View commit details -
Configuration menu - View commit details
-
Copy full SHA for 612641f - Browse repository at this point
Copy the full SHA 612641fView commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v0.1.26...v0.1.27