-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
108 lines (91 loc) · 3 KB
/
Copy pathCargo.toml
File metadata and controls
108 lines (91 loc) · 3 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[workspace]
members = [
"crates/finima-core",
"crates/finima-db",
"crates/finima-api",
"crates/finima-auth",
"crates/finima-ingest",
"crates/finima-llm",
"crates/finima-analysis",
"crates/finima-feed",
"crates/finima-categorize",
"crates/finima-embed",
]
resolver = "2"
[workspace.package]
version = "0.2.0"
[workspace.dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# Web framework
axum = { version = "0.8", features = ["macros", "multipart", "ws"] }
axum-extra = { version = "0.12", features = ["query"] }
tower-http = { version = "0.7", features = ["cors", "compression-gzip", "trace", "limit", "set-header"] }
futures = "0.3"
# Database
sqlx = { version = "0.9", features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "chrono", "rust_decimal", "json"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
# Auth
jsonwebtoken = { version = "11", features = ["rust_crypto"] }
sha2 = "0.11"
base64 = "0.23"
rand = "0.10"
# HTTP client
reqwest = { version = "0.13", features = ["json"] }
# File parsing
calamine = { version = "0.36", features = ["dates"] }
csv = "1"
quick-xml = "0.41"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tracing-appender = "0.2"
# Date/time, UUID, Decimal
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["v4", "serde"] }
rust_decimal = { version = "1", features = ["serde-float"] }
# Configuration
config = "0.15"
# Feed parsing
feed-rs = "2"
# Object storage (S3-compatible)
#
# NOTE: we opt out of the AWS SDKs' default `rustls` feature because it
# activates `aws-smithy-http-client/legacy-rustls-ring`, which pulls in
# rustls 0.21 + rustls-webpki 0.101 (RUSTSEC-2026-0098 / -0099). Using
# `default-https-client` gives us the modern `rustls-aws-lc` path
# (rustls 0.23 + rustls-webpki 0.103.12+) with no change in surface API.
aws-sdk-s3 = { version = "1", default-features = false, features = [
"sigv4a",
"http-1x",
"default-https-client",
"rt-tokio",
"behavior-version-latest",
] }
aws-config = { version = "1", default-features = false, features = [
"default-https-client",
"rt-tokio",
"credentials-process",
"sso",
"behavior-version-latest",
] }
aws-credential-types = "1"
bytes = "1"
# Metrics
prometheus-client = "0.25"
# Misc
thiserror = "2"
async-trait = "0.1"
# Hardware detection
sysinfo = "0.39"
# Candle sentence-transformer stack (used by finima-embed and finima-llm).
# Pinned to the 0.10 family that the workspace already pulls in
# transitively via mistralrs — avoids duplicate candle-core builds.
candle-core = { version = "0.10", default-features = false }
candle-nn = { version = "0.10", default-features = false }
candle-transformers = { version = "0.10", default-features = false }
hf-hub = { version = "0.4", default-features = false, features = ["ureq"] }
tokenizers = { version = "0.23", default-features = false, features = ["onig"] }