flutter_rust_bridge 2.12.0

Flutter/Dart <-> Rust binding generator, feature-rich, but seamless and simple
Documentation
1
2
3
4
5
6
7
8
// For some reason Clippy thinks that the `AtomicBool` import is unused, but it's needed by
// `base_arc_generate_tests!`
#[cfg(feature = "portable-atomic")]
#[allow(unused_imports)]
pub(crate) use portable_atomic::{AtomicBool, AtomicI32, AtomicU64};
pub(crate) use std::sync::atomic::Ordering;
#[cfg(not(feature = "portable-atomic"))]
pub(crate) use std::sync::atomic::{AtomicBool, AtomicI32, AtomicU64};