-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
63 lines (51 loc) · 1.53 KB
/
Cargo.toml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "espionox"
version = "0.1.42"
license = "MIT OR Apache-2.0"
description = "A library for creating multi-agent workflows in Rust"
homepage="https://github.com/voidKandy/espionox"
repository="https://github.com/voidKandy/espionox"
readme="README.md"
keywords = []
categories= []
edition = "2021"
[lib]
path = "src/lib.rs"
[[example]]
name = "summarize_at_limit"
path = "examples/summarize_at_limit.rs"
[[example]]
name = "rag"
path = "examples/rag.rs"
# All features are not working an in experimentation stages
[features]
default = [
# "tools"
# "bert",
]
tools = ["dep:scraper", "dep:headless_chrome", "dep:base64"]
bert = ["dep:rust-bert", "dep:tch"]
[dependencies]
scraper = { version = "0.18.1" , optional = true }
headless_chrome = { version = "1.0.9", optional = true}
base64 = { version = "0.21.7", optional = true }
rust-bert = { version = "0.21.0", optional = true }
tch = {version = "0.13.0", optional = true }
anyhow = "1.0.71"
reqwest = { version= "0.11.18", features = ['json', 'stream']}
serde = "1.0.164"
serde_derive = "1.0.164"
serde_json = "1.0.97"
tokio = { version = "1.28.2", features = ["full"] }
uuid = {version = "1.4.0", features = ["v4"]}
tracing = { version = "0.1.37", features = ["log"] }
tracing-bunyan-formatter = "0.3.8"
tracing-log = "0.1.3"
tracing-subscriber = { version = "0.3.17", features = ["registry", "env-filter"] }
once_cell = "1.18.0"
futures = "0.3.28"
futures-util = "0.3.28"
bytes = "1.4.0"
thiserror = "1.0.48"
reqwest-streams = { version = "0.3.0", features=["json"] }
dotenv = "0.15.0"