-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
91 lines (89 loc) · 2.42 KB
/
Cargo.toml
File metadata and controls
91 lines (89 loc) · 2.42 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[package]
name = "pinespot-axum"
version = "0.1.0"
edition = "2024"
[dependencies]
# Primary crates
rustls = { version = "0.23.32", features = ["std", "log", "logging", "ring"] }
anyhow = "1.0.100"
axum = { version = "0.8.4", features = ["macros", "multipart", "ws"] }
axum-core = "0.5.2"
axum-extra = { version = "0.10.1", features = [
"async-read-body",
"cookie",
"cookie-private",
"cookie-signed",
"multipart",
"query",
"scheme",
"typed-header",
"typed-routing",
] }
bcrypt = "0.17.1"
chrono = { version = "0.4.42", features = ["serde"] }
dotenvy = "0.15.7"
jsonwebtoken = "9.3.1"
lapin = "3.6.0"
oauth2 = "5.0.0"
rand = "0.9.2"
redis = { version = "0.32.5", features = [
"r2d2",
"tokio-comp",
"tokio-rustls-comp",
"tls-rustls-insecure",
"tokio-native-tls-comp",
"uuid",
] }
regex = "1.11.2"
reqwest = { version = "0.12.23", default-features = false, features = [
"json",
"rustls-tls",
] }
serde = { version = "1.0.226", features = ["derive"] }
serde_json = "1.0.145"
sqlx = { version = "0.8.6", features = [
"bigdecimal",
"chrono",
"derive",
"macros",
"postgres",
"runtime-tokio",
"tls-native-tls",
"tls-rustls",
"uuid",
] }
sqlx-core = "0.8.6"
thiserror = "2.0.16"
tokio = { version = "1.47.1", features = ["full"] }
tower = "0.5.2"
tower-http = { version = "0.6.6", features = ["cors", "trace"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = [
"env-filter",
"local-time",
"std",
"time",
] }
uuid = { version = "1.18.1", features = ["serde", "v4"] }
validator = { version = "0.20.0", features = ["derive"] }
rustls-pemfile = "2.2.0"
tokio-rustls = "0.26.3"
openidconnect = "4.0.1"
url = { version = "2.5.7", features = ["serde"] }
cookie = "0.18.1"
object_store = { version = "0.12.4", features = ["gcp", "aws"] }
infer = "0.19.0"
base64 = "0.22.1"
either = "1.15.0"
time = { version = "0.3.44", features = ["formatting", "macros"] }
bigdecimal = { version = "0.4.8", features = ["serde"] }
bytes = { version = "1.10.1", features = ["serde"] }
serde_with = "3.15.0"
qdrant-client = { version = "1.15.0", features = ["uuid"] }
tonic = { version = "0.14.2", features = ["_tls-any", "tls-ring", "transport"] }
tonic-rustls = { version = "0.2.0", features = ["axum"] }
tonic-tls = { version = "0.6.0", features = ["rustls"] }
fastembed = "5.2.0"
rust-bert = { version = "0.23.0", features = ["download-libtorch"] }
tch = "=0.17.0"
image = { version = "0.25.8", features = ["serde"] }