refactor: bump project deps

This commit is contained in:
Jakub Miazek
2024-03-29 13:39:22 +01:00
parent a5dff87330
commit 37c5bb316f
3 changed files with 328 additions and 127 deletions

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "fastapi-sqlalchemy-asyncpg"
version = "0.0.9"
version = "0.0.10"
description = ""
authors = ["Jakub Miazek <the@grillazz.com>"]
packages = []
@@ -11,22 +11,22 @@ python = "^3.12"
fastapi = "0.110.0"
pydantic = {version = "2.6.4", extras = ["email"]}
pydantic-settings = "2.2.1"
sqlalchemy = "2.0.28"
sqlalchemy = "2.0.29"
uvicorn = { version = "0.29.0", extras = ["standard"]}
asyncpg = "0.29.0"
alembic = "1.13.1"
httpx = "0.27.0"
pytest = "^8.1.1"
pytest-cov = "4.1.0"
pytest-cov = "5.0.0"
uvloop = "0.19.0"
httptools = "0.6.1"
rich = "13.7.1"
pyjwt = {version = "2.8.0", extras = ["cryptography"]}
redis = "5.0.3"
passlib = {version = "^1.7.4", extras = ["bcrypt"]}
polars = "^0.20.14"
polars = "^0.20.17"
python-multipart = "^0.0.9"
fastexcel = "^0.9.1"
fastexcel = "^0.10.1"
[tool.poetry.dev-dependencies]
devtools = { extras = ["pygments"], version = "*" }