41 lines
1.2 KiB
TOML
41 lines
1.2 KiB
TOML
[package]
|
|
name = "pod"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
clap = { version = "4.6.0", features = ["derive"] }
|
|
llm-worker = { workspace = true }
|
|
session-store = { workspace = true }
|
|
manifest = { workspace = true }
|
|
protocol = { workspace = true }
|
|
provider = { workspace = true }
|
|
pod-registry = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["fs", "io-util", "macros", "net", "process", "rt-multi-thread", "signal", "sync", "time"] }
|
|
toml = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tools = { workspace = true }
|
|
minijinja = "2.19.0"
|
|
chrono = "0.4"
|
|
include_dir = "0.7.4"
|
|
fs4 = { workspace = true, features = ["sync"] }
|
|
libc = { workspace = true }
|
|
schemars = { workspace = true }
|
|
memory = { workspace = true }
|
|
workflow-crate = { package = "workflow", path = "../workflow" }
|
|
uuid = { workspace = true, features = ["v7"] }
|
|
session-metrics = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
dotenv = "0.15.0"
|
|
futures = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
toml = { workspace = true }
|