forked from Christiantyemele/PocketFlow-Template-Rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (32 loc) · 896 Bytes
/
Cargo.toml
File metadata and controls
42 lines (32 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "pocketflow_template_rust"
version = "0.1.0"
edition = "2021"
[dependencies]
# Core flow framework
pocketflow_rs = "0.1"
# Async runtime and utilities
tokio = { version = "1", features = ["full"] }
anyhow = "1"
async-trait = "0.1"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# OpenAI client
async-openai = "0.23"
# Tavily search SDK (Reader node)
tavily = "1"
# CLI
clap = { version = "4", features = ["derive"] }
# .env loader
dotenvy = "0.15"
# HTTP server
axum = { version = "0.7", features = ["macros", "json", "ws"] }
once_cell = "1"
uuid = { version = "1", features = ["v4"] }
tokio-stream = { version = "0.1", features = ["sync"] }
# HTTP middleware (CORS)
tower-http = { version = "0.5", features = ["cors"] }
# OpenAPI documentation
utoipa = { version = "4" }
utoipa-swagger-ui = { version = "7", features = ["axum"] }