- 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
49 lines
1.5 KiB
TOML
49 lines
1.5 KiB
TOML
[package]
|
|
name = "wfe-yaml"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
description = "YAML workflow definitions for WFE"
|
|
|
|
[features]
|
|
default = []
|
|
deno = ["deno_core", "deno_error", "url", "reqwest"]
|
|
buildkit = ["wfe-buildkit"]
|
|
containerd = ["wfe-containerd"]
|
|
rustlang = ["wfe-rustlang"]
|
|
kubernetes = ["wfe-kubernetes"]
|
|
|
|
[dependencies]
|
|
wfe-core = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_yaml = { workspace = true }
|
|
yaml-merge-keys = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
tokio = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
chrono = { workspace = true }
|
|
regex = { workspace = true }
|
|
schemars = { version = "1", features = ["derive"] }
|
|
deno_core = { workspace = true, optional = true }
|
|
deno_error = { workspace = true, optional = true }
|
|
url = { workspace = true, optional = true }
|
|
reqwest = { workspace = true, optional = true }
|
|
wfe-buildkit = { workspace = true, optional = true }
|
|
wfe-containerd = { workspace = true, optional = true }
|
|
wfe-rustlang = { workspace = true, optional = true }
|
|
wfe-kubernetes = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { workspace = true }
|
|
tokio = { workspace = true, features = ["test-util", "process"] }
|
|
tokio-util = "0.7"
|
|
wfe-core = { workspace = true, features = ["test-support"] }
|
|
wfe = { path = "../wfe" }
|
|
wiremock = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|