meredith233 opened a new issue, #1127: URL: https://github.com/apache/rocketmq-clients/issues/1127
### Before Creating the Enhancement Request - [x] I have confirmed that this should be classified as an enhancement rather than a bug/feature. ### Programming Language of the Client Rust ### Summary This issue tracks a future-incompatibility warning introduced in Rust 1.91. When building this project with Rust 1.91, the compiler emits the following warning: ``` warning: the following packages contain code that will be rejected by a future version of Rust: minitrace-macro v0.4.1 note: to see what the problems were, use the option `--future-incompat-report`, or run `cargo report future-incompatibilities --id 1` ``` This indicates that the `minitrace` crate contains code that will be removed or rejected in future Rust versions. ### Motivation To avoid potential build failures in future Rust releases. ### Describe the Solution You'd Like There are two ways to solve this: 1. Update `minitrace` to 0.6. 2. Update `minitrace` to `fastrace` 0.7, which is the successor of `minitrace`. ### Describe Alternatives You've Considered Simply updating the version of `minitrace` is enough, as it is compatible. ### Additional Context _No response_ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
