objc2-browser-engine-core 0.3.2

Bindings to the BrowserEngineCore framework
Documentation
1
2
3
4
5
6
7
8
fn main() {
    // FIXME: We need a better way to determine this.
    // https://github.com/rust-lang/rust/issues/73628#issuecomment-2467241918
    println!("cargo:rustc-check-cfg=cfg(arm64e)");
    if std::env::var("TARGET").unwrap().contains("arm64e") {
        println!("cargo::rustc-cfg=arm64e");
    }
}