Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[package]
|
|
name = "alga-ext-runner"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
thiserror = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
axum = { version = "0.7", features = ["macros"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
wasmtime = { version = "38.0.4", features = ["component-model", "component-model-async"] }
|
|
wasmtime-wasi = "38.0.4"
|
|
wasmtime-wasi-http = "38.0.4"
|
|
bytes = "1"
|
|
base64 = "0.22"
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
sha2 = "0.10"
|
|
hex = "0.4"
|
|
once_cell = "1"
|
|
url = "2"
|
|
async-trait = "0.1"
|
|
rand = "0.8"
|
|
humantime = "2"
|
|
redis = { version = "0.25", features = ["tokio-comp", "connection-manager"] }
|
|
urlencoding = "2"
|
|
|
|
# New dependencies for static asset host
|
|
tower-http = { version = "0.5", features = ["fs", "set-header", "trace"] }
|
|
mime_guess = "2"
|
|
tar = "0.4"
|
|
zstd = "0.13"
|
|
moka = { version = "0.12", features = ["future"] }
|
|
tokio-util = "0.7"
|
|
|
|
# Optional S3 presign support (feature-gated)
|
|
aws-sdk-s3 = { version = "1", features = ["rustls", "behavior-version-latest"] }
|
|
aws-credential-types = "1"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
serial_test = "3"
|
|
tower = "0.5"
|