-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (61 loc) · 1.86 KB
/
Cargo.toml
File metadata and controls
62 lines (61 loc) · 1.86 KB
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 = "ai-reader"
version = "0.1.0"
edition = "2024"
[dependencies]
tokio = { version = "1", features = ["full"] }
csv = "1.3.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
dashmap = "6"
crossbeam = "0.8.4"
anyhow = "1.0"
thiserror = "2.0.16"
time = { version = "0.3", features = ["macros", "local-offset", "serde"] }
clap = { version = "4.5", features = ["derive"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "time"] }
tracing-appender = "0.2.3"
pulldown-cmark = "0.13.0"
mdbook = "0.4"
regex = "1.11.2"
toml = "0.9.6"
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "time"] }
epub2mdbook = "0.15.0"
dotenvy = "0.15.7"
walkdir = "2.5.0"
tree-iter = "0.6.0"
schemars = "0.8.22"
async-openai = { git = "https://github.com/cyborg42/async-openai.git" }
futures = "0.3.31"
parking_lot = "0.12.4"
async-scoped = { version = "0.9.0", features = ["use-tokio"] }
fs_extra = "1.3.0"
argon2 = "0.5.3"
tempfile = "3.22.0"
utoipa = { version = "5.4.0", features = ["axum_extras", "time"] }
utoipa-swagger-ui = { version = "9.0.2", features = ["axum"] }
axum = { version = "0.8", features = ["macros", "multipart", "ws", "http2"] }
tower = "0.5"
tower-http = { version = "0.6", features = [
"trace",
"cors",
"compression-br",
"timeout",
] }
redis = { version = "1.0.0-alpha.1", features = ["tokio-comp"] }
tower-cookies = "0.11"
axum-extra = { version = "0.10", features = ["typed-header"] }
moka = { version = "0.12.10", features = ["future"] }
async-stream = "0.3"
mime = "0.3.17"
zip = "5.1.1"
rustls = "0.23.31"
tokio-rustls = "0.26"
axum-server = { version = "0.7", features = ["tls-rustls"] }
tower-sessions = "0.14.0"
tower-sessions-moka-store = "*"
tower-sessions-sqlx-store = { version = "0.15.0", features = ["sqlite"] }
tokio-stream = "0.1.17"
futures-util = "0.3.31"
rand = "0.10.0-rc.0"