Fengyuan Chen
Fengyuan Chen
当下载youku视频有些文件skip过之后,bar的进度就显示不正确了。
```rust let mut config = fast_log::Config::new() .custom(ConsoleErrAppender {}) .file_split( file_path, fast_log::consts::LogSize::MB(log_file_mb), fast_log::plugin::file_split::RollingType::KeepNum(log_file_keep_num.into()), LogPacker {}, ) .level(log::LevelFilter::Info); config.format = Box::new(MyLogFormat {}); fast_log::init(config).expect("failed to init log"); ``` Currently fast_log will open file...
After read/write, cdev_gen_read_write should advance file position.
[code use parking_lot](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=92298959ce4a9fd8e082ca351b5bca64) [code use std](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=c6f58127573ac42261fb80a6f8a5fea4) After cargo build -r and run, I have below results. |version|duration| |-|-| |parking_lot|34.016281622s | |std|6.342443319s| Version: rust 1.79.0 parking_lot v0.12.3 Benchmark results: rust 1.79.0...
**Have you searched existing Github issues to see if someone has already requested this feature?** Yes **Is your feature request related to a problem? Please describe.** I want to use...
1. Add support for blake2 checksum #69 2. Fix alignment issues of Rust binding structures in unrar_sys/src/lib.rs #70
 The C structs (such as HeaderDataEx) in unrar dll.hpp use `#pragma pack(push, 1)`, while the corresponding Rust structs do not use `#[repr(C, packed)]`. This results in different alignment methods...
Currently, reading blake2 checksum from rar archives is not supported.
### Operating system Windows ### Joplin version 3.4.12 ### Desktop version info Joplin 3.4.12 (prod, win32) Device: win32, AMD Ryzen 9 7900X 12-Core Processor Client ID: 1db354cc70f54ff6b6119eb71540f778 Sync Version: 3...
The parameter `lp_point` in `get_cursor_pos` should be of reference type `&mut`. I've manually tested and verified it in my local environment. Fix #25 Please merge this PR and release a...