Stepan Koltsov
Stepan Koltsov
Issue #6017. When there's a `#[doc]` attribute in the middle of comment, `rustfmt` cannot know what would be inside of it. So skip the formatting of such comments.
Input: ``` //! //! Example 1 //! //! ``` #![doc = "test()"] //! ``` //! //! //! //! //! Example 2 //! //! ``` //! example(2); //! ``` //! //!...
### What problem are you trying to solve? We have a binary deployed to servers. It is not always trivial to get `tokio-console` binary to these servers. We'd like to...
Probably related to https://github.com/georust/rstar/issues/138. Min repro: ```rust #[cfg(test)] mod tests { use rstar::RTree; #[test] fn test() { let mut rtree = RTree::new(); rtree.insert([-1231069110, 165759396]); rtree.insert([781046969, 1474650861]); rtree.insert([2044084841, -178727451]); rtree.insert([477217386, 1765868819]);...
JetBrains IDE is trying it's best to complete code, and unfortunately completes `::new` for every object, because there's ``` impl PointExt for T where T: Point {} pub trait PointExt:...
Add `CompactOsString`, which is inline `OsString`. When working with filesystem, conversion to `String` is not always desirable, and using compact string would be helpful.
``` wasm-pack build --target web --verbose ``` prints something like: ``` [INFO]: 🎯 Checking for the Wasm target... [INFO]: 🌀 Compiling to Wasm... Fresh unicode-ident v1.0.12 Fresh bumpalo v3.15.4 Fresh...
There are two issues with `RawTable` being in hashbrown crate: * extra "feature" in hashbrown crate makes it slightly harder to use (for both crate authors and for users) *...
Current API only accepts strings. Would be helpful if it could accept something like: ``` struct Tree { value_excluding_children: u64, label: String, subtrees: Vec, node_type: NodeType, // kernel, library, ......
``` fn sync_readme_check(path: &Path) { ... } ``` So it could be invoked transparently from a test without having to configure CI or local environment.