-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
38 lines (30 loc) · 842 Bytes
/
requirements.txt
File metadata and controls
38 lines (30 loc) · 842 Bytes
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
# API-First Implementation Dependencies
# Must match code-first implementation versions for compatibility
# Core FastAPI dependencies
fastapi==0.121.1
uvicorn[standard]==0.38.0
pydantic-settings==2.12.0
slowapi==0.1.9 # Rate limiting
pybreaker==1.4.1 # Circuit breaker
# HTTP client
httpx==0.28.1
# Database drivers (versions must match code-first for compatibility)
asyncpg==0.30.0
aiomysql==0.3.2
cryptography>=41.0.0 # Required for MySQL caching_sha2_password auth
motor==3.7.1
pymongo==4.15.3
# Redis and Caching
redis[hiredis]==7.0.1 # Compatible with fastapi-cache2 (requires <5.0.0)
fastapi-cache2[redis]==0.2.2 # Response caching
# RabbitMQ
aio-pika==9.5.7
# Utilities
python-json-logger==4.0.0
# Observability
prometheus-client==0.23.1
# Testing
pytest==8.4.2
pytest-asyncio==1.2.0
pytest-cov==7.0.0
pytest-mock==3.15.1