Merge pull request #159 from grillazz/152-implement-acyncpg-coon-pool-poc

bump project deps
This commit is contained in:
Jakub Miazek 2024-06-08 10:30:56 +02:00 committed by GitHub
commit b938b0dee0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1080 additions and 485 deletions

1547
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -9,28 +9,30 @@ license = "MIT"
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.111.0"
pydantic = {version = "^2.7.1", extras = ["email"]}
pydantic-settings = "^2.2.1"
pydantic = {version = "^2.7.3", extras = ["email"]}
pydantic-settings = "^2.3.1"
sqlalchemy = "^2.0.30"
uvicorn = { version = "^0.29.0", extras = ["standard"]}
uvicorn = { version = "^0.30.1", extras = ["standard"]}
asyncpg = "^0.29.0"
alembic = "^1.13.1"
httpx = "^0.27.0"
pytest = "^8.1.1"
pytest = "^8.2.2"
pytest-cov = "^5.0.0"
uvloop = "^0.19.0"
uvloop = "^0.18.0"
httptools = "^0.6.1"
rich = "^13.7.1"
pyjwt = {version = "^2.8.0", extras = ["cryptography"]}
redis = "^5.0.4"
redis = "^5.0.5"
passlib = {version = "^1.7.4", extras = ["bcrypt"]}
polars = "^0.20.26"
polars = "^0.20.31"
python-multipart = "^0.0.9"
fastexcel = "^0.10.2"
fastapi-cache2 = {git = "https://github.com/yoco-tech/fastapi-cache.git", rev = "main"}
inline-snapshot = "^0.9.0"
inline-snapshot = "^0.10.2"
dirty-equals = "^0.7.1.post0"
polyfactory = "^2.16.0"
granian = "^1.4.1"
transformers = "^4.41.2"
[tool.poetry.group.dev.dependencies]
devtools = { extras = ["pygments"], version = "*" }