d68f003000
CI / Change detection (push) Has been cancelled
CI / Version drift (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Workflow RLM cache (push) Has been cancelled
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / npm wrapper smoke (push) Has been cancelled
CI / Mobile runtime smoke (push) Has been cancelled
CI / Workflow lint (push) Has been cancelled
CI / Documentation (push) Has been cancelled
Web Frontend / Lint & Type Check (push) Failing after 1s
Auto-close harvested PRs / close (push) Failing after 1s
cargo-deny / cargo-deny (bans licenses sources) (push) Failing after 1s
Security audit / cargo-audit (push) Failing after 1s
Sync to CNB / sync (push) Failing after 1s
cargo-deny / cargo-deny (advisories) (push) Failing after 3s
Web Frontend / Deploy to Cloudflare (push) Has been cancelled
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
name = "codewhale-workflow-js"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Dynamic Workflow runtime: sandboxed rquickjs scripts that dispatch CodeWhale subagents"
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
jsonschema.workspace = true
|
|
rquickjs.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
tokio.workspace = true
|
|
|
|
# rquickjs does not ship pre-generated bindings for Android. 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 = "android")'.dependencies]
|
|
rquickjs = { workspace = true, features = ["bindgen"] }
|
|
|
|
# rquickjs does not ship pre-generated bindings for NetBSD. Generate them at
|
|
# build time so the crate compiles there 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
|