16 lines
382 B
TOML
16 lines
382 B
TOML
[package]
|
|
name = "worker-runtime"
|
|
description = "Embedded memory-backed Runtime API for Worker management"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
fs-store = ["dep:serde_json"]
|
|
|
|
[dependencies]
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true, optional = true }
|
|
thiserror = { workspace = true }
|