- tonic-reflection for gRPC service discovery - /schema/workflow.json (JSON Schema from schemars derives) - /schema/workflow.yaml (same schema in YAML) - /schema/workflow.proto (raw proto file) - Multi-stage alpine Dockerfile with all executor features - Comprehensive configuration reference (wfe-server/README.md) - Release script (scripts/release.sh) - Bumped to 1.8.1
30 lines
893 B
TOML
30 lines
893 B
TOML
[package]
|
|
name = "wfe-deno"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
description = "Deno bindings for the WFE workflow engine"
|
|
|
|
[dependencies]
|
|
wfe-core = { workspace = true, features = ["test-support"] }
|
|
wfe = { version = "1.8.1", path = "../wfe", registry = "sunbeam" }
|
|
deno_core = { workspace = true }
|
|
deno_error = { workspace = true }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
tracing = { workspace = true }
|
|
chrono = { workspace = true }
|
|
|
|
# Pin icu crates to 2.1.x -- icu 2.2 broke temporal_rs (deno_core transitive dep)
|
|
icu_calendar = ">=2.1, <2.2"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { workspace = true }
|
|
tokio = { workspace = true, features = ["test-util"] }
|
|
tokio-util = "0.7"
|
|
tempfile = { workspace = true }
|