-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 793 Bytes
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 793 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
[package]
name = "my-agent"
version = "0.1.0"
authors = ["Jeff <fei.code@gmail.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.86"
async-openai = "0.23.4"
async-stream = "0.3.5"
derive_builder = "0.20.0"
futures = "0.3.30"
url = "2.5.2"
tokio = { version = "1.39.2", features = ["rt", "rt-multi-thread", "macros"] }
serde_json = "1.0.121"
dotenvy = "0.15.7"
reqwest = { version = "0.12.5", features = ["json"] }
serde = { version = "1.0.204", features = ["derive"] }
enum_dispatch = "0.3.13"
strum = { version = "0.26.3", features = ["derive"] }
tera = "1.20.0"
pyo3 = { version = "0.22.2", features = ["auto-initialize"] }
chrono = { version = "0.4.38", features = ["unstable-locales"] }