8-expert review identified 3 bugs in shipped code (Vary header hallucination, fn/function wire key mismatch, max-age=0 defeating PSR) — all fixed with tests updated across Python and TypeScript. Added: manifest version field, affects validation, wire format convention, origin-side cache module (HMAC key derivation, MemoryCache + RedisCache backends, reverse index for scoped invalidation, executor integration). 16 known issues documented in cache/KNOWN_ISSUES.md from expert review — critical items (user_id not passed, purge race condition, no Redis error handling) to be fixed in follow-up. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
50 lines
911 B
TOML
50 lines
911 B
TOML
[project]
|
|
name = "mizan"
|
|
version = "1.0.1"
|
|
description = "Django + React server functions framework"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"django>=5.0",
|
|
"django-ninja>=1.0",
|
|
"django-readers>=2.0",
|
|
"pydantic>=2.0",
|
|
"PyJWT>=2.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
cache = [
|
|
"redis>=5.0",
|
|
]
|
|
channels = [
|
|
"channels>=4.0",
|
|
"channels-redis>=4.0",
|
|
]
|
|
allauth = [
|
|
"django-allauth>=65.0",
|
|
]
|
|
webauthn = [
|
|
"fido2>=2.0",
|
|
]
|
|
shapes = [
|
|
"django-readers>=2.0",
|
|
]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-django>=4.9",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mizan"]
|
|
|
|
[tool.pytest.ini_options]
|
|
DJANGO_SETTINGS_MODULE = "tests.settings"
|
|
pythonpath = ["src", "."]
|
|
testpaths = ["src/mizan/tests"]
|
|
python_classes = ["*Tests", "*Test", "Test*"]
|
|
python_functions = ["test_*"]
|