Pydantic benchmark

This commit is contained in:
Eden Kirin
2023-10-11 20:33:21 +02:00
commit 3e02a67d94
13 changed files with 553 additions and 0 deletions

19
pyproject.toml Normal file
View File

@ -0,0 +1,19 @@
[tool.poetry]
name = "pydantic-vs-msgspec"
version = "0.1.0"
description = ""
authors = ["Eden Kirin <eden.kirin@intis.hr>"]
readme = "README.md"
packages = [{include = "pydantic_vs_msgspec"}]
[tool.poetry.dependencies]
python = "^3.11"
pydantic = "^2.4.2"
msgspec = "^0.18.4"
factory-boy = "^3.3.0"
polyfactory = "^2.9.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"