Zzaniu
Zzaniu
```rust use meilisearch_sdk::client::*; use serde::{Serialize, Deserialize}; use futures::executor::block_on; #[derive(Serialize, Deserialize, Debug)] struct Movie { id: usize, title: String, genres: Vec, } fn main() { block_on(async move { let client =...
I found that there is a significant delay from the moment the log is written until it reaches the transforms. conf.toml: ```toml data_dir = "./vector-data" [sources.gmb_error_log] type = "file" include...
[let mut key = key.to_lowercase()](https://github.com/rust-cli/config-rs/blob/c297a4e9f087c4c80188452552bb7fb1215d0303/src/env.rs#L260) Because I see that ENV is forced to be lowercased here, if my struct is renamed to uppercase and underscored, the ENV parsing will fail...
Big file read, then memory burst ```rust let mut book = umya_spreadsheet::reader::xlsx::lazy_read(self.file_path.as_ref())?; let cell = book .get_lazy_read_sheet_cells(&sheet_index) .map_err(|e| anyhow!("{e}"))?; let v = cell.get_cell_value((1, index)).get_value(); ... ``` ```shell memory allocation of...