Kitsu
Kitsu
Commit https://github.com/hsivonen/encoding_rs/commit/cecda92386d0e1db7961e25690e86bdabfaee064 introduces an `alloc` feature and adds it to the defaults. Unfortunately this breaks semver, in particularly for those crates that use cargo parametr `default-features = false`. As an...
The following code: ```rust #[derive(Debug, diesel_derive_enum::DbEnum, diesel::SqlType)] pub enum A {} ``` will lead to compiler warning: ``` warning: unreachable expression --> src/lib.rs:1:17 | 1 | #[derive(Debug, diesel_derive_enum::DbEnum, diesel::SqlType)] |...
Немного путает различия в нумерации из-за 2 введений. Возможно имеет смысл перенести README в конец и сделать аннотацию в текущем введении?
I encountered an issue, that current implementation doesn't make an svg file (only perf.data) for programs that are [finished with non zero status](https://github.com/ferrous-systems/cargo-flamegraph/blob/d3190497c6ea822a847f3963aea7960ae22e0a41/src/main.rs#L267). My case is the following: I'm trying...
I believe that all of the functions of `exec` group must be marked with unsafe. The reason is quite simple: these calls are equivalent to calling an `extern "C"` function...
For now, only a specified icon size can be used (except pixmaps). Some of the apps provide only big icons (e.g. 256x256), thus higher-resultion icons should be loaded, if there's...
For now layout is hardcoded and can only be change by changing code. These need to be configurable to fulfill the issue: - [x] window position 5387c5fedae78451cd4598260684428355139c8a - [x] window...
Currently number values for config can be only specified with exact pixels number. Would be handy to support percent values as well. For now it's fine to implement it for...
It might be handy to support clipboard. - Copy, as far as I know, won't work, because no other wayland client can get a buffer after exit. And since yofi...