Diogo Sousa
Diogo Sousa
Currently not all item types can be used in intralinks: * [x] Support intralinks to types methods, `const`s, and `type`s defined in impl blocks. (issue #166) ** There's a limitation...
Currently `cargo-rdme` only explores modules that are mentioned in the documentation intralinks. This means that do not support mentions to `Foo::a_method()` in the code below, because module `a_mod` is not...
Currently we only support intralinks format with absolute paths from the root of the crate, i.e. links of the form `[⋯](crate::⋯)`. This is an annoying limitation and users may think...
Hi @xacrimon. I was looking at the documentation of dashmap, and the documentation of methods that access the map warn about potential deadlocks. For mutable methods it says ``` **Locking...
I guess as one of the first users I would get one of the first bugs :slightly_smiling_face: Before this commit links with images would get corrupted: the image would simply...
Links to standard library crates themselves (e.g. `::std`, or `::alloc`) were not working.
Intralinks do not resolve re-exports. This means that if you have ```rust mod foo { pub mod bar { struct Bar {} } } pub use foo::bar; ``` you cannot...