Sergio Benitez
Sergio Benitez
Thanks! Those workarounds work. Another issue with respect to tabs that I found was that using `sort_by = "tabs"` doesn't seem to work. However, I found that `:BufferLineSortByTabs` does, and...
> @SergioBenitez is this something you would think about adding to Cookie? Yes. However, this seems much more complicated than it need be. Why not something like: ```rust raw_str.split(';') .map(|s|...
Yeah, this would be awesome! Would be happy to take/review a PR.
See my comments on #161.
I think an additional child jar, or perhaps a setting on the existing `Signed` jar, that enables this functionality would be great.
Why not use `serde`'s `#[serde(deserialize_with = "path")]`? ```rust struct Foo { #[serde(deserialize_with = "range")] field: i64; } pub fn range, { let n = i64::deserialize(deserializer)?. if !(0..10).contains(n) { return Err(...);...
Since a `Figment` is itself a `Provider`, I wonder if we need any special support for this. How does this look? ```rust let mut fig = Figment::from(Yaml::file(path)); if let Ok(path)...
What does this have to do with Figment? I see no use of Figment anywhere.
@fMeow I'd like to clarify that the crux of the issue is that your crate is currently misusing Cargo features. Cargo features _must_ be additive; any other use of features...
@dtolnay Extending `from_reader` like that would be great. Alternatively, you could add a secondary function so that the interface doesn't get so complicated. Two options are: ```rust /// Reads all...