Conversation
…re flags for FFI bindings
…ave/load methods Relaxes the impl<P,T> PriorityQueue bounds so the struct is usable without serde when persistence isn't needed. The Serialize+DeserializeOwned constraints are now only required on the save_to_file/load_from_file methods themselves.
Changes #[cfg(feature = "quic")] to #[cfg(any(feature = "quic", feature = "quic-proto"))] so QuicMqttEngine and its quinn_proto imports are compiled when the lower-level quic-proto feature is enabled directly on the flowsdk crate.
RustlsTlsConfig and RustlsTlsTransport are only meaningful in async contexts. Adding the async-client guard prevents a compile error when rustls-tls is enabled in isolation (e.g. the quic-quiche feature set).
…i-bindings feature Changes bare uniffi::Record/Enum/setup_scaffolding! invocations to #[cfg_attr(feature = "uniffi-bindings", ...)] so the FFI crate compiles cleanly when uniffi-bindings is not selected (e.g. C-only or quiche-only builds).
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #97 +/- ##
==========================================
- Coverage 76.90% 76.24% -0.66%
==========================================
Files 66 67 +1
Lines 17065 17214 +149
==========================================
+ Hits 13124 13125 +1
- Misses 3941 4089 +148 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
fix #98
Please include a summary of the changes and which issue is fixed. Please also include relevant motivation and context.
Fixes #(issue)
Type of change
Please delete options that are not relevant.
How Has This Been Tested?
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce.
Checklist:
Performance Impact
Security Considerations