Peanutbother

Results 17 comments of Peanutbother

even though, ICONV is an optional dependency, please consider making it a peer dependency, people like me who need debug mode don't maybe still dont want to see messages like...

I think the current way of printing errors is very neat and easy on the eye. maybe adding an error-matcher mode where the output gets printed the way you describe...

I wrote some typings and am evaluating them right now, feel free to test and use them as you like. if you find errors please let me know. https://gist.github.com/peanutbother/af907b7cb9ec27baaebfaf2952fb2b53

> I have been checking and it is not possible, internally bevy does things that do not give me the control I need to replace the main logger 😞 @doonv...

For my current project I am using a `build.rs` script where I run `tailwindcss` if a source file changes: ```rust use std::process::Command; fn main() { Command::new("tailwindcss") .args(&["-i", "./src/tailwind.css", "-o", "./assets/tailwind.css"])...

I had the same issue with my wifi and was able to find two issues where wifi setup will not work if - the SSID contains umlauts (or may any...

In my case I tried "Verstärker 1" (So both Umlauts and spaces) and later without spaces but both did not work.

We should mark this issue manually because it won't be solved immediately but the bot will close it otherwise

the call to response.json().await returns a `reqwest::Result` instead of a `reqwest_middleware::Result` I solved it by mapping the error for now but it would be more convenient if the `Result` type...

I would like to test the market feature you implemented already, so I started to mock the API but it's a very tedious task and not really worth the effort....