summary refs log tree commit diff
path: root/rust/src/lib.rs
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2022-12-05 14:03:28 +0000
committerErik Johnston <erik@matrix.org>2022-12-05 14:03:28 +0000
commit18ac015ecdd66fde7275efaaf07995b35ad4c41b (patch)
treec7a65dfa9770af82498095102d2ce1223de5b449 /rust/src/lib.rs
parentAdd tree cache (diff)
downloadsynapse-18ac015ecdd66fde7275efaaf07995b35ad4c41b.tar.xz
bindings
Diffstat (limited to 'rust/src/lib.rs')
-rw-r--r--rust/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/rust/src/lib.rs b/rust/src/lib.rs

index 00f72dc59f..6db2b1eae2 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs
@@ -27,6 +27,7 @@ fn synapse_rust(py: Python<'_>, m: &PyModule) -> PyResult<()> { m.add_function(wrap_pyfunction!(get_rust_file_digest, m)?)?; push::register_module(py, m)?; + tree_cache::binding::register_module(py, m)?; Ok(()) }