dart-sys

Native bindings to the dart native extensions sdk.

This crate exposes an api for dart_api.h, which exposes the basic dart native extensions api. This crate used bindgen to generate the bindings to the header.

Requirements
Usage

Include the following in your Cargo.toml: toml [lib] crate-type = ["cdylib"] [dependencies] dart-sys = "0.1.0" And follow the guide on the native extensions api page.

Examples

Please visit the examples directory for more information. If there should appear more idiomatic bindings, I will try to keep this updated to link to them.

Note

A few things are not mentioned on the native extensions api page:

This crate does not generate bindings, and instead uses prebuilt ones. The code to build the bindings can be found commented in build.rs.

To run, uncomment and from there, copy the contents of the bindings.rs file under the directory which is reported in the panic into lib.rs.

The bindings were last generated on the 26th of February 2020.

I have manually edited the names under the generated bindings to avoid ugly bindgen names such as _Dart_CObject__bindgen_ty_1__bindgen_ty_3, and instead replaces them with a more appropriate name based on their usage in the api. (Such as Dart_NativeString).