Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions crates/workflow-js/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,11 @@ tokio.workspace = true
[target.'cfg(target_os = "android")'.dependencies]
rquickjs = { workspace = true, features = ["bindgen"] }

# rquickjs does not ship pre-generated bindings for NetBSD. Generate them
# against the NDK sysroot so the advertised Termux/Android release target can
# compile instead of trying to include a nonexistent bindings file.
[target.'cfg(target_os = "netbsd")'.dependencies]
rquickjs = { workspace = true, features = ["bindgen"] }

[dev-dependencies]
serde_json.workspace = true
Loading