When I try to generate Rust FFI via gir, it always seems to try to find used dependencies.
So I have a Gir.toml
like that:
[options]
girs_directories = ["../foo_gir"]
library = "Foo"
version = "0.1"
target_path = "."
min_cfg_version = "0.1"
external_libraries = [
"GLib-2.0",
"GObject",
]
work_mode = "sys"
and was expecting gir
to then handle GLib-2.0 automagically.
When I however execute gir
it complains
Error: "Couldn't find
GLib-2.0
..."