Donough Liu
Donough Liu
I am porting some private Rust projects to OpenHarmony. OpenHarmony is basically another mobile operating system based on Linux, which owns a separate adb-like tool: [hdc](https://developer.harmonyos.com/en/docs/documentation/doc-guides/ide-command-line-hdc-0000001078799258). In terms of testing,...
~~Basically working. Required to be done:~~ - [x] `quick-xml` update #332 - [x] Add more logs and tests - [x] Documentation and changelog update Fixes #246 `xctrace` is a tracer...
Fixes #13862 Dependencies with same package name in the `Cargo.lock` was squashed in `EncodableResolve::into_resolve()`. e.g. In the problem reproduction repo's Cargo.lock, there are two entries: ```toml [[package]] name = "once_cell"...
### Problem If you have two patches on two dependencies with same package name, you will see `Updating crates.io index` every time you run cargo check. The index update is...
Address https://github.com/tokio-rs/prost/pull/1157#discussion_r1760622415 This branch is based on #1157.
**Version** `[email protected]`, `[email protected]` **Description** `prost_config::Config::boxed` generates code doesn't compile. I tried this code: `boxed_tests.proto`: ```protobuf syntax = "proto3"; package boxed_tests; message Container { oneof data { string baz = 5;...
Running benchmark on my local macbook pro(M1 Pro): Before: Before: ``` running 41 tests test clone_from_large ... bench: 7,630.54 ns/iter (+/- 105.82) test clone_from_small ... bench: 69.27 ns/iter (+/- 4.44)...
Supercedes #243 Related to #4 Version of `rayon` was changed from `^1.2` to `^1.3` since it's required by [`criterion`](https://docs.rs/criterion).
Cleanup the code, follow up #43
[`FSEventStreamScheduleWithRunLoop`](https://developer.apple.com/documentation/coreservices/1447824-fseventstreamschedulewithrunloop) was deprecated, and [`FSEventStreamSetDispatchQueue`](https://developer.apple.com/documentation/coreservices/1444164-fseventstreamsetdispatchqueue) is the suggested equivalent. `dispatch2` was introduced for the `dispatch_queue_t` type.