-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (45 loc) · 1.95 KB
/
Copy pathCargo.toml
File metadata and controls
58 lines (45 loc) · 1.95 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
[package]
name = "hone-server"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "REST API server for Hone personal finance tool"
[dependencies]
# Internal crates
hone-core = { path = "../hone-core" } # Core library (db, import, detection)
# Web framework
axum.workspace = true # HTTP routing and handlers
tower.workspace = true # Middleware framework
tower-http.workspace = true # CORS, static files, security headers
# Async runtime
tokio.workspace = true # Async runtime for server
# Serialization
serde.workspace = true # Request/response (de)serialization
serde_json.workspace = true # JSON API bodies
# Cryptography
sha2.workspace = true # Content hashing
base64 = "0.22" # Receipt image encoding
subtle = "2.5" # Constant-time comparison for API keys
jsonwebtoken = "10.4" # Cloudflare Access JWT validation
# HTTP client (for fetching CF public keys)
reqwest.workspace = true # Fetch Cloudflare Access public keys
# Network utilities
ipnet = "2.9" # IP/CIDR parsing for trusted networks
# Error handling
anyhow.workspace = true # Error propagation
# Logging
tracing.workspace = true # Request logging
tracing-subscriber.workspace = true # Log formatting
# Data processing
chrono.workspace = true # Date handling for API params
# File utilities
tempfile = "3.10" # Temp files for backup verification
# MCP (Model Context Protocol)
rmcp.workspace = true # MCP server for LLM tool access
schemars.workspace = true # JSON Schema for tool parameters
[dev-dependencies]
# Test framework
tower = { workspace = true, features = ["util"] } # Test service utilities
http-body-util = "0.1" # HTTP body handling in tests
hyper = "1.4" # HTTP client for tests
tempfile = "3.10" # Temp databases for tests