-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
38 lines (33 loc) · 1.03 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
[workspace]
members = ["youtube-transcript", "summarizer"]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.3.2"
repository = "https://github.com/akhildevelops/summarizer"
[workspace.dependencies]
async-openai = { version = "^0.10" }
tokio = { version = "^1.27", features = ["macros"] }
serde_json = { version = "~1.0" }
serde = { version = "~1.0", features = ["derive"] }
roxmltree = { version = "~0.18" }
reqwest = { version = "~0.11" }
clap = { version = "4.2.1", features = ["string"] }
once_cell = { version = "^1.17" }
apalis = { version = "^0.3.6" }
anyhow = { version = "~1.0" }
chrono = { version = "~0.4" }
futures = { version = "~0.3" }
env_logger = { version = "~0.10.0" }
log = { version = "~0.4.17" }
axum = { version = "~0.6" }
regex = { version = "1" }
tower = { version = "0.4", features = ["util"] }
tower-http = { version = "0.4", features = ["fs"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[profile.release]
panic = "abort"
lto = "fat"
debug-assertions = false
strip = true