Gabriel Hansson
Gabriel Hansson
Pull request an attempt to collect a multitude of unresolved and conflicting pull requests into logical commits for one hassle-free merge. Namely: ### #6924 by aelfsyg * set active opacity...
Commit messages explain most of it. Proceeds: https://github.com/helix-editor/helix/pull/3053 | Before | After | |---|---| | | | |  |  | Command palette: Should I change the ">" character...
I'm interested in replacing `url::Url` with `uriparse-rs::URI` in the `lsp-types` crate. https://github.com/gluon-lang/lsp-types/issues/261#issuecomment-1750367878. But that would require `URI` to implement `PartialOrd` and `Ord`. `Url` does this by simply comparing the stringified...
Comparison is part of the spec: https://datatracker.ietf.org/doc/html/rfc3986#section-6.2.
I'm currently not interested in i18n support, and I'm writing an application where that binary size should be kept as small as possible. Took a quick look at the crates.io...
Mostly a feature request that I'm interested in hearing your take on. It's quite common for me to have failed unit tests that check `assert_eq!` on structs with geometries, simply...
Wasn't sure if the example/is_tty should remain, simply adapted it for now.
This PR is similar to https://github.com/meilisearch/meilisearch-rust/pull/426 and https://github.com/meilisearch/meilisearch-rust/pull/459, and an alternative solution to https://github.com/meilisearch/meilisearch-rust/issues/452. It adds the ability to switch to a `reqwest` backend by using either the `reqwest-native-tls` or...
## Source ```rust // lib.rs #![allow(dead_code)] use meilisearch_sdk::{indexes::Index, Client}; use serde::Serialize; #[derive(Serialize)] struct SimpleStruct 0) // failed } fn index(namespace: &str) -> Index { Client::new( "http://127.0.0.1:7700", Some("xxx"), ) .index(namespace) }...