2026-04-05 22:06:07 +01:00
|
|
|
[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"] }
|
2026-04-06 18:14:03 +01:00
|
|
|
wfe = { version = "1.8.0", path = "../wfe", registry = "sunbeam" }
|
2026-04-05 22:06:07 +01:00
|
|
|
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 }
|
|
|
|
|
|
2026-04-06 19:42:45 +01:00
|
|
|
# Pin icu crates to 2.1.x -- icu 2.2 broke temporal_rs (deno_core transitive dep)
|
|
|
|
|
icu_calendar = ">=2.1, <2.2"
|
|
|
|
|
|
2026-04-05 22:06:07 +01:00
|
|
|
[dev-dependencies]
|
|
|
|
|
pretty_assertions = { workspace = true }
|
|
|
|
|
tokio = { workspace = true, features = ["test-util"] }
|
|
|
|
|
tokio-util = "0.7"
|
|
|
|
|
tempfile = { workspace = true }
|