Skip to content

Rollup of 9 pull requests #92915

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 26 commits into from
Jan 15, 2022
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
d3aecc1
When obligation is a sized predicate, prefer projection or object can…
jackh726 Dec 20, 2021
b1b873f
Extend const_convert to rest of blanket core::convert impls
clarfonthey Dec 29, 2021
f6f8149
Add `#[track_caller]` to `mirbug`
inquisitivecrystal Jan 6, 2022
1e53a90
export `tcp::IntoIncoming`
ibraheemdev Jan 9, 2022
ec9c949
Use pre-interned symbols in a couple of places
bjorn3 Jan 10, 2022
f88b501
fix stability attribute for `tcp::IntoIncoming`
ibraheemdev Jan 13, 2022
7e055c6
librustdoc: Address some clippy lints
pierwill Jan 13, 2022
73945fd
fix bug
BoxyUwU Jan 14, 2022
b3d71d9
reduce indentaton
BoxyUwU Jan 14, 2022
fd7cc79
Add myself to .mailmap
JamesHinshelwood Jan 14, 2022
61c07a9
reviews ish
BoxyUwU Jan 14, 2022
9b9fc60
Remove unused link references.
ehuss Jan 13, 2022
ddab0bf
Remove duplicate cargo/4270. It was part of 1.21.
ehuss Jan 13, 2022
c1526c6
Remove duplicate #39983. It was part of 1.19.
ehuss Jan 13, 2022
12fa471
Fix incorrect link for #38622.
ehuss Jan 13, 2022
c7926c7
Fix link name collision for cargo#2365 (1.8cv)
ehuss Jan 13, 2022
6b726a1
Fix some links that had colliding reference names.
ehuss Jan 13, 2022
6471682
Rollup merge of #92191 - jackh726:issue-89352, r=nikomatsakis
matthiaskrgr Jan 15, 2022
1d9ab77
Rollup merge of #92382 - clarfonthey:const_convert, r=scottmcm
matthiaskrgr Jan 15, 2022
8df08e8
Rollup merge of #92625 - inquisitivecrystal:mirbug-caller, r=michaelw…
matthiaskrgr Jan 15, 2022
d7e512c
Rollup merge of #92684 - ibraheemdev:patch-10, r=m-ou-se
matthiaskrgr Jan 15, 2022
8326f3f
Rollup merge of #92743 - bjorn3:less_symbol_intern, r=camelid
matthiaskrgr Jan 15, 2022
c693442
Rollup merge of #92838 - ehuss:cleanup-release-links, r=Mark-Simulacrum
matthiaskrgr Jan 15, 2022
8f41559
Rollup merge of #92868 - pierwill:librustdoc-clippy, r=camelid
matthiaskrgr Jan 15, 2022
6c94f99
Rollup merge of #92875 - BoxyUwU:infer_arg_opt_const_param_of, r=lcnr
matthiaskrgr Jan 15, 2022
ff6c175
Rollup merge of #92891 - JamesHinshelwood:patch-1, r=Mark-Simulacrum
matthiaskrgr Jan 15, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
export tcp::IntoIncoming
  • Loading branch information
ibraheemdev authored Jan 9, 2022
commit 1e53a905ba0e3f70e3a87dcdf557269324765e03
2 changes: 1 addition & 1 deletion library/std/src/net/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub use self::ip::{IpAddr, Ipv4Addr, Ipv6Addr, Ipv6MulticastScope};
#[stable(feature = "rust1", since = "1.0.0")]
pub use self::parser::AddrParseError;
#[stable(feature = "rust1", since = "1.0.0")]
pub use self::tcp::{Incoming, TcpListener, TcpStream};
pub use self::tcp::{Incoming, IntoIncoming, TcpListener, TcpStream};
#[stable(feature = "rust1", since = "1.0.0")]
pub use self::udp::UdpSocket;

Expand Down