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.
This commit is contained in:
Brian Krabach
2026-04-04 02:40:19 -07:00
parent 4483d879c6
commit ddba3baeb1
+1
View File
@@ -19,6 +19,7 @@ dependencies = [
"itsdangerous>=2.1.0",
"python-multipart>=0.0.9",
"httpx>=0.27.0",
"cryptography",
]
[project.optional-dependencies]