sbant

Results 13 issues of sbant

Current, unrar.rs extract all files in an archive and overwrite files in target directory. May be add a function: `fn extract_some_to(self, path: String, file_list: &[str]) -> UnrarResult` to let user...

enhancement
help wanted

Today, I retry compile capnproto c++ version with Mingw64 The only error is in kj-async library(because the difference with linux and windows, it will not be supported in near future),...

I'm using python 3.9 The class: ``` @dataclass class TcUiMsg: Fairvalue: Optional[dict[str, Fv]] = None ``` Fv is an object. use perde.json.dumps to dump ``` out_txt = perde.json.dumps(msg) ``` got...

I'm using trio_websocket and got message in bytes. orjson support this. loads function in orjson: def loads(__obj: Union[bytes, bytearray, str]) -> Any: ...

with: cargo run --features ssl --example cli ws://echo.websocket.org ws-rs can success connect. but with: cargo run --features ssl --example cli wss://echo.websocket.org display: Connecting to wss://echo.websocket.org and nothing else. p.s ws-rs...

question
Windows

libencoding-628a0580477da326.rlib(encoding-628a0580477da326.0.o) : error LNK2019: unresolved external symbol __imp__ZN6euc_kr20BACKWARD_TABLE_UPPER20h7dcfe3eed7745131q6oE referenced in function _ZN6euc_kr8backward20h382884ad758a08bazDpE libencoding-628a0580477da326.rlib(encoding-628a0580477da326.0.o) : error LNK2019: unresolved external symbol __imp__ZN6euc_kr20BACKWARD_TABLE_LOWER20h7dcfe3eed7745131RlgE referenced in function _ZN6euc_kr8backward20h382884ad758a08bazDpE libencoding-628a0580477da326.rlib(encoding-628a0580477da326.0.o) : error LNK2019: unresolved external...

As Rust code use snake_case, but in tauri-specta's code use "to_lower_camel_case" to force convert all name to camelCase. Is there any way to keep the original naming convention or change...

Then can get rid of these ``` call_something().await.map_err(|e| e.to_string())?; ``` Tauri official guide (https://tauri.app/v1/guides/features/command/#error-handling) ``` // create the error type that represents all errors possible in our program #[derive(Debug, thiserror::Error)]...