From ddba3baeb1376aaf7a734de42ae41597384e4535 Mon Sep 17 00:00:00 2001 From: Brian Krabach Date: Sat, 4 Apr 2026 02:40:19 -0700 Subject: [PATCH] fix: add cryptography to pyproject.toml dependencies muxplex/tls.py imports cryptography for self-signed cert generation but it was missing from the declared dependencies. uv tool installs would fail with ModuleNotFoundError on setup-tls. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index ab30f9c..06f7167 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,7 @@ dependencies = [ "itsdangerous>=2.1.0", "python-multipart>=0.0.9", "httpx>=0.27.0", + "cryptography", ] [project.optional-dependencies]