Manish Goregaokar

Results 134 issues of Manish Goregaokar

While [`from_str` in method.rs currently mentions that it is case insensitive](https://github.com/chris-morgan/rust-http/blob/master/src/http/method.rs#L23), the code reads otherwise. This probably should be fixed. Additionally, the rules for extension methods probably should match the...

Currently `ComPtr::from_raw` _adopts_ the given pointer, which means that it assumes that it has already been addreffed. This isn't always true, though, sometimes you want to _retain_ the refcount of...

https://docs.rs/wio/0.2.0/wio/com/struct.ComPtr.html doesn't exist, perhaps the crate needs some `doc(cfg)` stuff?

I'm performing an unsafe review of encoding_rs. The hope is by the end of this I will have safety documentation for all unsafe blocks in the crate. Opening this issue...

Currently datagen pulls in all components. We should do the same thing we do for the metacrate and add per-component features, with a `default_components` and `experimental_components` feature so that people...

T-enhancement
C-data-infra
S-large
needs-approval

We cover this a _little bit_ in @robertbastian's new [data management tutorial](https://github.com/unicode-org/icu4x/blob/main/docs/tutorials/data_management.md), but we probably should improve this: Most users will want to select a subset of keys, and keyextract...

C-data-infra

We should add FFI for: - All enum props, as enums with a `to_int()` method - BidiAuxiliaryProps and friends - canonical_combinng_class - we should implement enum to name (as a...

Whilst sshing, the following keys are rather useful: - Ctrl, Alt - PgUp/PgDn (very useful for irssi), Home, End - ESC (for vim) - Arrow keys - ins, del What...

Hi! In the process of unsafe-reviewing this crate, we discovered some issues. It's as of yet unclear if there is any unsoundness here, however the invariants are sufficiently nonlocal that...