From 82ce18ef9f45f817505b12e24c958beda45465f0 Mon Sep 17 00:00:00 2001 From: Christophe Besson Date: Sun, 9 Aug 2026 22:28:47 +0200 Subject: fix: complete pyproject.toml deps + graceful QUIC fallback MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit meshbay-node/pyproject.toml: add aioquic>=1.0 (was commented 'v2'), websockets>=12.0 (revocation push). Both are production code since Phase 5. meshbay-hub/pyproject.toml: add aiosqlite (tests without PostgreSQL), slowapi (rate limiting), websockets (revocation push), PyJWT (explicit). transport/__init__.py: QUIC imports wrapped in try/except — node works without aioquic (TCP+TLS + HTTP fallback). QUIC_AVAILABLE flag exported. QUICKSTART.md: replace manual pip list with 'pip install -e' that pulls all deps from pyproject.toml automatically. Add dependency table. CLAUDE.md: clarify that all deps go in pyproject.toml, not manual installs. 81/81 tests. Co-Authored-By: Claude Sonnet 4.6 (1M context) --- packages/meshbay-hub/pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'packages/meshbay-hub') diff --git a/packages/meshbay-hub/pyproject.toml b/packages/meshbay-hub/pyproject.toml index e0a880a..5487a6a 100644 --- a/packages/meshbay-hub/pyproject.toml +++ b/packages/meshbay-hub/pyproject.toml @@ -13,8 +13,12 @@ dependencies = [ "uvicorn[standard]>=0.30", "sqlalchemy>=2.0", "alembic>=1.13", - "asyncpg>=0.30", # PostgreSQL async driver + "asyncpg>=0.30", # PostgreSQL async driver + "aiosqlite>=0.20", # SQLite async (tests + dev without PostgreSQL) "httpx>=0.28", + "slowapi>=0.1", # rate limiting + "PyJWT>=2.9", # JWT EdDSA (also in meshbay-common but explicit here) + "websockets>=12.0", # hub→node revocation push ] [project.optional-dependencies] -- cgit v1.2.3