flutter_rust_bridge 1.6.1
flutter_rust_bridge: ^1.6.1 copied to clipboard
High-level memory-safe binding generator for Flutter/Dart <-> Rust
1.6.1 #
- Remove extra newline on empty comment #203 (thanks @Desdaemon)
1.6.0 #
- Implement
Vec<String>#193 (thanks @Desdaemon) - Add logging for FlutterRustBridgeSetupMixin for users to debug easily.
- Set names of threads for
ThreadPoolExecutorto make debugging easier when looking at threads.
1.5.0 #
- Copy Rust comments over to Dart generated file (#182, thanks @Desdaemon)
1.4.0 #
- Support synchronous function calls in addition to existing asynchronous Future and Stream approaches (#175, #176)
- Remove unnecessary dependency of
lintfor the Dart package.
1.3.0 #
- Support more types of the form
Vec<primitive_type>andZeroCopyBuffer<Vec<primitive_type>>, such asVec<f32>andZeroCopyBuffer<Vec<f32>>to be transformed intoFloat32Listin Dart. (#162, #153) - Do not generate unnecessary Dart to Rust wire code to fix bugs such as when
Vec<ZeroCopyBuffer<Vec<u8>>>is in output argument. - Warn when
ffigenemits any[SEVERE]log messages. - Make outputs change less when input of codegen changes.
- Simplify
Wire2Api<Option<T>>generated code.
1.2.2 #
- Add Linux and Windows out-of-the-box support for the
with_flutterexample. - Improve linter hints
1.2.1 #
- Add
--skip-add-mod-to-libflag. - Allow Rust input file in directories besides root directory of the crate.
- Warn when command's output seems to indicate errors.
- Do not include
stdarg.hautomatically (related: #108 and #53). - Fix windows path handling problem (#119, thanks @smw-wagnerma).
- Add
--llvm-pathflag.
1.2.0 #
- Enable
Option<T>types to be transformed (thanks @Desdaemon) - Support
Streams: call function once, "return" multiple times with different data. - Add
FlutterRustBridgeSetupMixin(an optional helper class), which allows custom setup hooks before ffi can be executed. - Add
hintparameter in generated Dart code, allowing users to pass custom data to the Dart executor, thus increasing flexibility. - Improve panic handling in extreme cases (avoid panic across languages, which is undefined behavior).
- Refactored
Handler, now it is much easier to customize your own handler functionality. - Remove one
Box::new(FnOnce), thus enables better inlining for ffi function calls. - Fix bug: Dart struct(class) is not generated if the struct only appears in the return type #98.
- Add
FlutterRustBridgeTimeoutMixin. If used, a timeout exception will be thrown for ffi calls that do not return within time limit.
1.1.0 #
- Generate
dummy_method_to_enforce_bundlingto avoid "symbols not found" problems in iOS release build - Allow customizations for generated Dart classes
- Add pure-Dart tutorial
- Update examples and tutorials, and fix outdated documentations
- Formatting problems for generated code
1.0.3 #
- Fix bugs and add features (details to be written later)
1.0.2 #
- Fix bugs and add features (details to be written later)
1.0.1 #
- Fix bugs and add features (details to be written later)
1.0.0 #
- Initial release



