Skip to content

Commit 929f596

Browse files
authored
Create 2021-02-17-meeting.md
1 parent 1009bc8 commit 929f596

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed

minutes/2021-02-17-meeting.md

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Libs Meeting 2021-02-17/18
2+
3+
###### tags: `Libs Meetings` `Minutes`
4+
5+
**Attendees**: sfackler, dtolnay, joshtriplett, scottmcm, amanieu, yaahc, bstrie, KodrAus, Mara
6+
7+
## Agenda
8+
9+
- [Open action items](https://hackmd.io/ovrbJj6CRduRgSA0Wzg2zg)
10+
- [Try trait v2](https://github.com/scottmcm/rfcs/blob/do-or-do-not/text/0000-try-trait-v2.md#summary)
11+
- ~~Edition range changes~~
12+
- ~~Triage~~
13+
- ~~Anything else?~~
14+
15+
## Try trait
16+
17+
- Consider a `FromTryOutput` trait for types you can inspect and break on, but can't construct (such as errors from FFI). That would split `from_output` off of `Try`.
18+
- Path forward: follow exactly what the RFC follows and see whether people run into `from_output`.
19+
- On naming: is it possible to reduce the number of distinct nouns we introduce? Do _Continue_ and _Break_ work?
20+
- Path forward: follow the _Residual_ naming and see if better names come forward in the meantime.
21+
22+
- Look at crater breakage from `Option` to `Result` breakage.
23+
24+
Two crater runs:
25+
26+
- One with the RFC as-written including the workaround for `Option` to `Result`.
27+
- One without the workaround for `Option` to `Result`.
28+
29+
## Triage
30+
31+
### FCPs
32+
33+
3 open T-libs FCPs:
34+
<details><summary><a href="https://github.com/rust-lang/rust/issues?q=is%3Aopen+label%3AT-libs+label%3Aproposed-final-comment-period">3 <code>rust-lang/rust</code> FCPs</a></summary>
35+
36+
- [[merge 81050](https://github.com/rust-lang/rust/issues/81050#issuecomment-765341798)] *Stabilize core::task::ready!* - (2 checkboxes left)
37+
- [[merge 77704](https://github.com/rust-lang/rust/issues/77704#issuecomment-760056634)] *Implement indexing slices with pairs of core::ops::Bound&lt;usize&gt;* - (2 checkboxes left)
38+
- [[merge 70516](https://github.com/rust-lang/rust/issues/70516#issuecomment-771646381)] *Tracking Issue for ASCII methods on OsStr* - (3 checkboxes left)
39+
</details>
40+
<p></p>
41+
42+
[Amanieu (1)](https://rfcbot.rs/fcp/Amanieu), [BurntSushi (3)](https://rfcbot.rs/fcp/BurntSushi), [KodrAus (1)](https://rfcbot.rs/fcp/KodrAus), [dtolnay (0)](https://rfcbot.rs/fcp/dtolnay), [m-ou-se (1)](https://rfcbot.rs/fcp/m-ou-se), [sfackler (1)](https://rfcbot.rs/fcp/sfackler)
43+
44+
### Nominated
45+
46+
- [2 `rust-lang/rfcs` items](https://github.com/rust-lang/rfcs/issues?q=is%3Aopen+label%3AT-libs+label%3AI-nominated)
47+
- [[2979](https://github.com/rust-lang/rfcs/pull/2979)] *\[RFC\]: Libs Team Governance*
48+
- **[[3058](https://github.com/rust-lang/rfcs/pull/3058)] *try\_trait\_v2: A new design for the ? desugaring***
49+
- [1 `rust-lang/rust` items](https://github.com/rust-lang/rust/issues?q=is%3Aopen+label%3AT-libs+label%3AI-nominated)
50+
- [[80149](https://github.com/rust-lang/rust/pull/80149)] *Use getrandom for generating HashMap seed*
51+
52+
### Waiting on team
53+
54+
- [0 `rust-lang/rfcs` items](https://github.com/rust-lang/rfcs/issues?q=is%3Aopen+label%3AT-libs+label%3AS-waiting-on-team)
55+
- [2 `rust-lang/rust` items](https://github.com/rust-lang/rust/issues?q=is%3Aopen+label%3AT-libs+label%3AS-waiting-on-team)
56+
- [[76901](https://github.com/rust-lang/rust/pull/76901)] *Implement RFC 2500 Needle API (Part 1)*
57+
- [[80771](https://github.com/rust-lang/rust/pull/80771)] *Make NonNull::as\_ref (and friends) return refs with unbound lifetimes*
58+
59+
### Needs decision
60+
61+
- [11 `rust-lang/rust` items](https://github.com/rust-lang/rust/issues?q=is%3Aopen+label%3AT-libs+label%3AI-needs-decision)
62+
- [[25053](https://github.com/rust-lang/rust/issues/25053)] *UnsafeCell should implement the Copy trait*
63+
- [[26951](https://github.com/rust-lang/rust/issues/26951)] *Abort on some large allocation requests, Panic on other*
64+
- [[29494](https://github.com/rust-lang/rust/issues/29494)] *Command does not escape arguments as expected on windows*
65+
- [[37868](https://github.com/rust-lang/rust/issues/37868)] *std::process::Command's current\_dir behaves differently on Unix and Windows, with respect to relative exe paths*
66+
- [[39186](https://github.com/rust-lang/rust/issues/39186)] *Document that std::os::unix::process::CommandExt.uid() triggers setgroups(0,0)*
67+
- [[42412](https://github.com/rust-lang/rust/issues/42412)] *Incorporate @raphlinus' container cheat sheet into the std::collections module docs*
68+
- [[56889](https://github.com/rust-lang/rust/issues/56889)] *Write::write\_all erroring when encountering Ok(0) interacts poorly with the contract of Write::write*
69+
- [[59878](https://github.com/rust-lang/rust/issues/59878)] *Box\<\[T\]\> should have an IntoIter implementation.*
70+
- [[62726](https://github.com/rust-lang/rust/issues/62726)] *Tracking issue for io\_slice\_advance*
71+
- [[79490](https://github.com/rust-lang/rust/issues/79490)] *Whether floating point value Display should adhere to IEEE standard?*
72+
- [[80823](https://github.com/rust-lang/rust/pull/80823)] *Add Cow::disown\_if() and Cow::disown\_if\_eq()*
73+
74+
## Actions
75+
76+
- [x] Reply to all issues/PRs discussed in this meeting, or add them to the [open action items](https://hackmd.io/ovrbJj6CRduRgSA0Wzg2zg).

0 commit comments

Comments
 (0)