23 lines
601 B
TOML
23 lines
601 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 }
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
pretty_assertions = { workspace = true }
|
||
|
|
tokio = { workspace = true, features = ["test-util"] }
|