- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 116
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: dtolnay/proc-macro2
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.56
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: dtolnay/proc-macro2
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.57
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 10 commits
- 7 files changed
- 1 contributor
Commits on May 5, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 2b25bd9 - Browse repository at this point
Copy the full SHA 2b25bd9View commit details -
Find out whether rust-src rustup component fixes ui test
`cargo test --manifest-path tests/ui/Cargo.toml` is passing locally but fails in GitHub Actions.
Configuration menu - View commit details
-
Copy full SHA for 37706ca - Browse repository at this point
Copy the full SHA 37706caView commit details -
Configuration menu - View commit details
-
Copy full SHA for c282649 - Browse repository at this point
Copy the full SHA c282649View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2d3959c - Browse repository at this point
Copy the full SHA 2d3959cView commit details
Commits on May 7, 2023
-
Ignore new_without_default clippy lint
error: you should consider adding a `Default` implementation for `TokenStream` --> src/fallback.rs:55:5 | 55 | / pub fn new() -> Self { 56 | | TokenStream { 57 | | inner: RcVecBuilder::new().build(), 58 | | } 59 | | } | |_____^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default = note: `-D clippy::new-without-default` implied by `-D clippy::all` help: try adding this | 54 + impl Default for TokenStream { 55 + fn default() -> Self { 56 + Self::new() 57 + } 58 + } | error: you should consider adding a `Default` implementation for `TokenStream` --> src/wrapper.rs:74:5 | 74 | / pub fn new() -> Self { 75 | | if inside_proc_macro() { 76 | | TokenStream::Compiler(DeferredTokenStream::new(proc_macro::TokenStream::new())) 77 | | } else { 78 | | TokenStream::Fallback(fallback::TokenStream::new()) 79 | | } 80 | | } | |_____^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default help: try adding this | 73 + impl Default for TokenStream { 74 + fn default() -> Self { 75 + Self::new() 76 + } 77 + } |
Configuration menu - View commit details
-
Copy full SHA for 7c637e7 - Browse repository at this point
Copy the full SHA 7c637e7View commit details -
Revert "Temporarily disable miri CI"
This reverts commit 2d3959c. Fixed in nightly-2023-05-06.
Configuration menu - View commit details
-
Copy full SHA for 2130305 - Browse repository at this point
Copy the full SHA 2130305View commit details
Commits on May 14, 2023
-
Configuration menu - View commit details
-
Copy full SHA for a597b3c - Browse repository at this point
Copy the full SHA a597b3cView commit details
Commits on May 15, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 5f9d3fe - Browse repository at this point
Copy the full SHA 5f9d3feView commit details -
Merge pull request #383 from dtolnay/procmacrospan
Disable start()/end() on Span::Compiler
Configuration menu - View commit details
-
Copy full SHA for 8bbbd60 - Browse repository at this point
Copy the full SHA 8bbbd60View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c1b102 - Browse repository at this point
Copy the full SHA 2c1b102View commit details
There are no files selected for viewing