Kitsu
Kitsu
See [clickhouse.rs](https://github.com/loyd/clickhouse.rs) and [CH docs](https://clickhouse.com/docs/en/operations/system-tables/columns).
The following code fails at the second assertion: ```rust let cache = FcFontCache::build(); assert!(cache .query(&FcPattern { name: Some("DejaVu Sans Mono".into()), ..Default::default() }) .is_none()); assert!(cache .query(&FcPattern { monospace: PatternMatch::True, ..Default::default() })...
Quite strange highlighting for case ranges: 
At example test.rs, fontconfig chooses a font with a file name "luRS08-ISO8859-1.pcf.gz" which leads to `thread 'main' panicked at 'Error constructing Font'`. This patch simply forces to use font with...
Hey! I've tried to check fabric benchmarks but something went wrong Run via: ```sh npm install && npm install fabric{,-ca}-client node benchmark/simple/main.js ``` ```bash **** End-to-end flow: testing 'open' ****...
It's quite handy to have an alias rather than manually recreating the internal type. ```rust fn make_builder() -> FooBuilder { .. } // vs fn make_builder() -> FooBuilder { .....
TLDR, for a given config: ```toml group_imports = [ ["$std::*", "proc_macro::*"], ["*"], ["my_crate::*", "crate::*::xyz"], ["$crate::*"], ] ``` The following order would be set: ```rust use proc_macro::Span; use std::rc::Rc; use rand;...
The implementation provides a hard-coded limit of 3 restarts per LSP stored at `Client`. On each restart it basically reduces the counter and spawns a job for starting LSP. Resolves...
In the doc the section is missing so I guess it's unimplemented. It would be handy to have it similar to serde: https://serde.rs/enum-representations.html#untagged
Motivation: - errors are slightly better; - most derive crates are using it so no need to build 2 syn crates.