add inline-snapshot, dirty-equals and polyfactory

This commit is contained in:
Jakub Miazek
2024-04-23 21:19:20 +02:00
parent 51e2a397fa
commit 43fe665608
2 changed files with 389 additions and 208 deletions

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "fastapi-sqlalchemy-asyncpg"
version = "0.0.10"
version = "0.0.11"
description = ""
authors = ["Jakub Miazek <the@grillazz.com>"]
packages = []
@@ -8,8 +8,8 @@ license = "MIT"
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "0.110.1"
pydantic = {version = "2.6.4", extras = ["email"]}
fastapi = "0.110.2"
pydantic = {version = "2.7.1", extras = ["email"]}
pydantic-settings = "2.2.1"
sqlalchemy = "2.0.29"
uvicorn = { version = "0.29.0", extras = ["standard"]}
@@ -22,12 +22,15 @@ uvloop = "0.19.0"
httptools = "0.6.1"
rich = "13.7.1"
pyjwt = {version = "2.8.0", extras = ["cryptography"]}
redis = "5.0.3"
redis = "5.0.4"
passlib = {version = "^1.7.4", extras = ["bcrypt"]}
polars = "^0.20.18"
polars = "^0.20.22"
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.8.1"
dirty-equals = "^0.7.1.post0"
polyfactory = "^2.15.0"
[tool.poetry.dev-dependencies]
devtools = { extras = ["pygments"], version = "*" }