-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
193: `Lazy` mutable API extension r=matklad a=danielSanchezQ As requested in #113. Also added explicit `get_mut`. Implement: - [x] `async::Lazy::force_mut` - [x] `async::Lazy::get_mut` - [x] `sync::Lazy::force_mut` - [x] `sync::Lazy::get_mut` Co-authored-by: Daniel Sanchez Quiros <[email protected]> Co-authored-by: Aleksey Kladov <[email protected]>
- Loading branch information
Showing
4 changed files
with
113 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "once_cell" | ||
version = "1.13.1" | ||
version = "1.14.0" | ||
authors = ["Aleksey Kladov <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters