bump gossipsub limit to 8MB + add warning this is a bandaid solution for large messages while we figure out the point to point protocol
30 lines
714 B
TOML
30 lines
714 B
TOML
[build-system]
|
|
requires = ["maturin>=1.0,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "exo_pyo3_bindings"
|
|
version = "0.2.1"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Andrei Cravtov", email = "[email protected]" },
|
|
{ name = "Evan Quiney", email = "[email protected]" },
|
|
]
|
|
requires-python = ">=3.13"
|
|
dependencies = []
|
|
|
|
[dependency-groups]
|
|
dev = ["exo_pyo3_bindings", "pytest>=8.4.0", "pytest-asyncio>=1.0.0"]
|
|
|
|
[tool.maturin]
|
|
#purelib = true
|
|
#python-source = "python"
|
|
module-name = "exo_pyo3_bindings"
|
|
features = ["pyo3/extension-module", "pyo3/experimental-async"]
|
|
|
|
[tool.pytest.ini_options]
|
|
log_cli = true
|
|
log_cli_level = "INFO"
|
|
asyncio_mode = "auto"
|