libs-team icon indicating copy to clipboard operation
libs-team copied to clipboard

The home of the library team

Results 178 libs-team issues
Sort by recently updated
recently updated
newest added

# Proposal ## Problem statement [`Stdin::read_line`](https://doc.rust-lang.org/stable/std/io/struct.Stdin.html#method.read_line) is very commonly used in programs written by beginners in rust. (For example, see the [guessing game program](https://doc.rust-lang.org/book/ch02-00-guessing-game-tutorial.html) in the Book.) Therefore, I think...

T-libs-api
api-change-proposal

### **Proposal** --- ## **Problem Statement** Currently, proc-macros that handle string literals receive raw strings with escape sequences and surrounding quotes. For example: ```rust #[my_macro] #[my_attr("\u{x78} blabla")] pub struct B;...

T-libs-api
api-change-proposal

# Proposal Add a `split_pattern` on slices, which is similar to `split` on slices but takes a slice instead of a closure, and splits the first slice on every instance...

T-libs-api
api-change-proposal

# Proposal ## Problem statement When writing an iterator which wraps slice::Windows, it is useful to access the underlying slice, so the iterator can provide methods to reconstruct the underlying...

T-libs-api
api-change-proposal

- Update .NET version to make it compile on my computer - Correct use of .NETs [IsIPv6UniqueLocal](https://learn.microsoft.com/en-us/dotnet/api/system.net.ipaddress.isipv6uniquelocal?view=net-8.0). It's actually unsupported on IPv4, previously it gave false positives. - Include Rust's...

# Proposal ## Problem statement One common pattern of numeric conversions is having a signed value and needing it in the unsigned type, or vice versa. Things like `isize::MAX as...

T-libs-api
api-change-proposal

# Proposal A fn in Chars

T-libs-api
api-change-proposal

Users regularly come to the /r/rust subreddit looking for help when their Rust code doesn't perform as well as they expect. The second most common culprit (after debug vs release...

T-libs-api