flutter-engine 0.3.2

Flutter engine embedder in rust
docs.rs failed to build flutter-engine-0.3.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: flutter-engine-0.2.1

flutter-engine is a library to make desktop apps in flutter and rust

flutter-engine in action

const ASSETS_PATH: &str = "../build/flutter_assets";
const ICU_DATA_PATH: &str = "./assets/icudtl.dat";

fn main() {
    let mut engine = flutter_engine::init().unwrap();
    engine
        .create_window(
            &flutter_engine::WindowArgs {
                height: 1200,
                width: 1800,
                title: "Flutter App Demo",
                mode: flutter_engine::WindowMode::Windowed,
                bg_color: (255, 255, 255),
            },
            ASSETS_PATH.to_string(),
            ICU_DATA_PATH.to_string(),
            vec![],
        )
        .unwrap();
    engine.run_window_loop(None, None);
}

demo

Check this out for a runable demo.