-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 1.09 KB
/
Copy pathCargo.toml
File metadata and controls
38 lines (34 loc) · 1.09 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
[package]
name = "recommendation-service"
version = "0.1.0"
edition = "2024"
[dependencies]
actix-web = "4.4"
actix-multipart = "0.7.2"
actix-cors = "0.7"
tokio = { version = "1.0", features = ["rt-multi-thread", "macros", "fs", "io-util", "sync"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
polars = { version = "0.50.0", default-features = false, features = ["lazy", "csv", "parquet", "json"] }
qdrant-client = "1.8"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
anyhow = "1.0"
futures-util = { version = "0.3", default-features = false, features = ["std"] }
uuid = { version = "1.4", features = ["v4"] }
env_logger = "0.11"
log = "0.4"
async-trait = "0.1"
bytes = "1.0"
dotenvy = "0.15"
chrono = { version = "0.4", default-features = false, features = ["clock", "std", "serde"] }
utoipa = { version = "5", features = ["actix_extras"] }
utoipa-swagger-ui = { version = "9", features = ["actix-web"] }
[dev-dependencies]
tempfile = "3"
[profile.release]
lto = "thin"
codegen-units = 1
strip = true
[profile.dev]
opt-level = 0
debug = true