32 lines
883 B
TOML
32 lines
883 B
TOML
[package]
|
|
name = "wfe-core"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
description = "Core traits, models, builder, and executor for the WFE workflow engine"
|
|
|
|
[features]
|
|
default = []
|
|
test-support = []
|
|
otel = ["tracing-opentelemetry", "opentelemetry"]
|
|
|
|
[dependencies]
|
|
tracing-opentelemetry = { workspace = true, optional = true }
|
|
opentelemetry = { workspace = true, optional = true }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tokio-util = "0.7"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { workspace = true }
|
|
rstest = { workspace = true }
|
|
tokio = { workspace = true, features = ["test-util"] }
|