Files
2026-09-21 17:34:06 +08:00

26 lines
712 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ===== Web 框架 =====
# FastAPI 核心框架
fastapi~=0.124.2
# ASGI 服务器(带 standard 扩展,支持 WebSocket/HTTPS)
uvicorn[standard]~=0.38.0
# Starlette(匹配 FastAPI 0.124.x 要求:>=0.40.0 <0.51.0)
starlette~=0.40.0
# ===== 数据建模与校验 =====
# Pydantic v2(兼容 Tortoise-ORM 0.25.1)
pydantic~=2.12.5
# ===== ORM 与数据库驱动 =====
# Tortoise-ORM(0.25.1 适配 Pydantic v2)
tortoise-orm~=0.25.1
# MySQL 异步驱动
aiomysql~=0.3.2
# ===== 表单 / 文件上传 =====
# 表单与文件上传处理(FastAPI 上传依赖)
python-multipart~=0.0.20
# ===== 加密 / 安全 =====
# 加密包(Tortoise-ORM 等会用到的稳定版本)
cryptography>=42.0.0