dart-sys
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.
dart_sdk
environment variable.
PATH
variable which contains dart-sdk
in it.
This will fall back to the flutter
sdk should it not find a dart sdk, but this
is not recommended, as it is more difficult to compile using the flutter sdk
and it appears it ships a non-standard dart sdk. clang
installed and on your path. 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.
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.
A few things are not mentioned on the native extensions api page:
[stable|nightly|beta]-x86_64-pc-windows-msvc
)lib
directory)