gitmalong
gitmalong
I am trying to iterate over the timezones within a webapp and Leptos requires the items to implement `Hash`. `time_tz::timezones::iter()`
```rust let result: Result = client .price(ids, &["usd"], false, false, false, false) .await; ``` In case the rate limit is hit the resulting hashmap has a key "status" instead of...
### What version of daisyUI are you using? 4.12.10 ### Which browsers are you seeing the problem on? _No response_ ### Reproduction URL - ### Describe your issue ```html "Date"...
Anyone facing those errors in postgres 16 logs? Pool settings: default, except max_connections = 500 It happens when I am doing many concurrent operations (fetch stream from large table (15million...
Is there a chance to get rustls support? Windows using colleagues of me always have trouble with openssl.
**Describe the bug** I followed Leptos DX https://book.leptos.dev/getting_started/leptos_dx.html to configure my Helix editor to make it work with Rust + Leptos + Tailwind. ```bash 2024-06-16T22:22:47.280 helix_lsp::transport [ERROR] tailwindcss-ls err:
```rust panicked at /Users/user/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sea-query-0.30.7/src/value.rs:256:27: called `Result::unwrap()` on an `Err` value: ValueTypeErr ``` ```rust // let entries: Vec = .. ; let decimals: Vec = entries .iter() .map(|x| Value::Decimal(x.map(|x| Box::new(x)))) .collect();...
I don't get any traces from the server layer with latest tonic (trace export of other things in my app work wel). Do I additionally need to use `#[instrument(skip_all)]` similar...
When working with FIFO/LIFO access patterns one might only want to keep the last x front/back elements in memory. This may have great performance while still keeping memory low. The...