-
-
Notifications
You must be signed in to change notification settings - Fork 39
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/pin-project
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.4.16
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: taiki-e/pin-project
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.4.17
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 7 commits
- 25 files changed
- 2 contributors
Commits on May 15, 2020
-
Allow clippy::manual_non_exhaustive lint
non_exhaustive requires Rust 1.40.
Configuration menu - View commit details
-
Copy full SHA for 8565b3d - Browse repository at this point
Copy the full SHA 8565b3dView commit details
Commits on May 17, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 85394ef - Browse repository at this point
Copy the full SHA 85394efView commit details -
224: Cleanup CI config r=taiki-e a=taiki-e * FIx minimal versions check. * Reduce CI time. Co-authored-by: Taiki Endo <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7216f6b - Browse repository at this point
Copy the full SHA 7216f6bView commit details -
Revert "Allow unused_braces in cargo doc"
This reverts commit 1bc75fd.
Configuration menu - View commit details
-
Copy full SHA for 23997ca - Browse repository at this point
Copy the full SHA 23997caView commit details
Commits on May 18, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 5765137 - Browse repository at this point
Copy the full SHA 5765137View commit details -
202: Allow naming the projected types r=taiki-e a=taiki-e By passing an argument with the same name as the method to the attribute, you can name the projection type returned from the method: ```rust #[pin_project( Replace, project = StructProj, project_ref = StructProjRef, project_replace = StructProjOwn, )] struct Struct<T> { #[pin] field: T, } let mut x = Struct { field: 0 }; let StructProj { field } = Pin::new(&mut x).project(); let StructProjRef { field } = Pin::new(&x).project_ref(); let StructProjOwn { field } = Pin::new(&mut x).project_replace(Struct { field: 1 }); ``` cc #43 Closes #124 TODO: * [x] add tests * [x] write docs * [x] separate unrelated changes; done in #214 * [x] msrv (`unrestricted_attribute_tokens` requires 1.34); done in #219 Co-authored-by: Taiki Endo <[email protected]>Configuration menu - View commit details
-
Copy full SHA for 3de876c - Browse repository at this point
Copy the full SHA 3de876cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 449ff70 - Browse repository at this point
Copy the full SHA 449ff70View 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.4.16...v0.4.17