Some checks failed
Documentation Lint & Validation / Markdown Linting (push) Has been cancelled
Documentation Lint & Validation / Validate mdBook Configuration (push) Has been cancelled
Documentation Lint & Validation / Content & Structure Validation (push) Has been cancelled
Documentation Lint & Validation / Lint & Validation Summary (push) Has been cancelled
mdBook Build & Deploy / Build mdBook (push) Has been cancelled
mdBook Build & Deploy / Documentation Quality Check (push) Has been cancelled
mdBook Build & Deploy / Deploy to GitHub Pages (push) Has been cancelled
mdBook Build & Deploy / Notification (push) Has been cancelled
Rust CI / Security Audit (push) Has been cancelled
Rust CI / Check + Test + Lint (nightly) (push) Has been cancelled
Rust CI / Check + Test + Lint (stable) (push) Has been cancelled
Nickel Type Check / Nickel Type Checking (push) Has been cancelled
51 lines
1.2 KiB
TOML
51 lines
1.2 KiB
TOML
[package]
|
|
name = "vapora-workflow-engine"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[dependencies]
|
|
vapora-shared = { workspace = true }
|
|
vapora-swarm = { workspace = true }
|
|
vapora-agents = { workspace = true }
|
|
vapora-knowledge-graph = { workspace = true }
|
|
|
|
# Async runtime
|
|
tokio = { workspace = true, features = ["full"] }
|
|
futures = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
|
|
# Message queue
|
|
async-nats = { workspace = true }
|
|
|
|
# Serialization
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
toml = { workspace = true }
|
|
|
|
# Utilities
|
|
uuid = { workspace = true, features = ["v4"] }
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
dashmap = { workspace = true }
|
|
|
|
# Logging
|
|
tracing = { workspace = true }
|
|
|
|
# Error handling
|
|
thiserror = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
|
|
# Metrics
|
|
prometheus = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
mockall = { workspace = true }
|
|
wiremock = { workspace = true }
|
|
tokio = { workspace = true, features = ["test-util"] }
|