Replaced third-party buildkit-client git dependency with wfe-buildkit-protos generated from official moby/buildkit protos. Direct ControlClient gRPC calls: SolveRequest with frontend attrs, exporters, cache options. Daemon-local context paths for builds (session protocol for remote transfer is TODO). Both proto crates now use tonic 0.14 / prost 0.14 — no transitive dependency conflicts. 95 combined tests, 85.6% region coverage.
31 lines
894 B
TOML
31 lines
894 B
TOML
[package]
|
|
name = "wfe-buildkit"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
description = "BuildKit image builder executor for WFE"
|
|
|
|
[dependencies]
|
|
wfe-core = { workspace = true }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
tracing = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
regex = { workspace = true }
|
|
wfe-buildkit-protos = { path = "../wfe-buildkit-protos" }
|
|
tonic = "0.14"
|
|
tower = { version = "0.4", features = ["util"] }
|
|
hyper-util = { version = "0.1", features = ["tokio"] }
|
|
uuid = { version = "1", features = ["v4"] }
|
|
tokio-stream = "0.1"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true, features = ["test-util"] }
|
|
tokio-util = "0.7"
|