-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (55 loc) · 1.76 KB
/
Cargo.toml
File metadata and controls
67 lines (55 loc) · 1.76 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
[workspace]
resolver = "2"
members = [
"crates/api",
"crates/core",
"crates/model",
"crates/auth"
]
[workspace.package]
edition = "2021"
license = "MIT"
version = "0.1.0"
authors = ["DeeperSensor <official-support@deepersensor.com>"]
[workspace.dependencies]
# Async / Runtime
tokio = { version = "1", features = ["rt-multi-thread","macros","signal","time"] }
axum = { version = "0.8", features = ["macros","json","tokio"] }
hyper = { version = "1", features = ["full"] }
tower = { version = "0.5", features = ["util","limit"] }
tower-http = { version = "0.6", features = ["trace","cors","request-id","limit","compression-br", "compression-gzip", "set-header"] }
# Serde / Config
serde = { version = "1", features = ["derive"] }
serde_json = "1"
config = "0.15"
dotenvy = "0.15"
# Logging / Tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter","fmt","json"] }
tracing-error = "0.2"
# Errors / Utils
thiserror = "1"
anyhow = "1"
once_cell = "1"
uuid = { version = "1", features = ["v4"] }
regex = "1"
# Concurrency & Async Helpers
futures-util = "0.3"
futures-core = "0.3"
async-trait = "0.1"
async-stream = "0.3"
bytes = "1"
# Auth & Security (placeholders for later)
argon2 = "0.5"
jsonwebtoken = "9"
rand = "0.10"
# HTTP Client
reqwest = { version = "0.12", default-features = false, features = ["json","stream","gzip","brotli","deflate","rustls-tls"] }
# Rate limiting / Redis
redis = { version = "0.32", features = ["tokio-comp","aio","connection-manager"] }
dashmap = "5"
# Database (added for persistence phase groundwork)
sqlx = { version = "0.8", features = ["runtime-tokio-rustls","postgres","uuid","chrono","macros"] }
chrono = { version = "0.4", features = ["clock","serde"] }
[workspace.metadata.cargo-machete]
ignored = ["tokio"]