-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (53 loc) · 1.59 KB
/
Cargo.toml
File metadata and controls
69 lines (53 loc) · 1.59 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
[package]
name = "cryptoscope"
version = "1.0.1"
edition = "2024"
description = "CryptoScope - Multi-exchange crypto symbols intelligence API"
authors = ["CryptoScope Team"]
[dependencies]
# Async runtime
tokio = { version = "1.35", features = ["full"] }
# Async utilities
futures = "0.3"
# HTTP client
reqwest = { version = "0.13", features = ["json"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Async trait support
async-trait = "0.1"
# Database
rusqlite = { version = "0.39", features = ["bundled"] }
# Date/time handling
chrono = { version = "0.4", features = ["serde"] }
time = { version = "0.3", features = ["macros"] }
# Cross-platform directories
dirs = "6.0"
# Web framework
axum = { version = "0.8", features = ["macros"] }
tower-http = { version = "0.6", features = ["cors", "trace"] }
utoipa = { version = "5", features = ["axum_extras"] }
utoipa-axum = "0.2"
utoipa-swagger-ui = { version = "9", features = ["axum"] }
ts-rs = "10"
# Authentication
jsonwebtoken = { version = "10.3", features = ["aws_lc_rs"] }
axum-extra = { version = "0.10", features = ["typed-header"] }
argon2 = "0.5"
rand = "0.8"
# Rate Limiting
tower_governor = { version = "0.8", features = ["axum", "tracing"] }
governor = "0.10"
# Input Validation
validator = { version = "0.20", features = ["derive"] }
regex = "1.11"
# Path Security
# normpath removed - using manual path normalization instead
# Environment variables
dotenvy = "0.15"