summary refs log tree commit diff
path: root/event_rs/Cargo.toml
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2022-03-11 18:10:36 +0000
committerErik Johnston <erik@matrix.org>2022-03-11 18:10:36 +0000
commit07fb52b5d514b8ac6076126cf0c19724507aa910 (patch)
tree71e14597ed8d8c043dcdf349723d3a52b076aeb2 /event_rs/Cargo.toml
parentFix a bug in background updates wherein background updates are never run usin... (diff)
downloadsynapse-github/erikj/event_rs.tar.xz
Diffstat (limited to 'event_rs/Cargo.toml')
-rw-r--r--event_rs/Cargo.toml18
1 files changed, 18 insertions, 0 deletions
diff --git a/event_rs/Cargo.toml b/event_rs/Cargo.toml
new file mode 100644
index 0000000000..58616a64ba
--- /dev/null
+++ b/event_rs/Cargo.toml
@@ -0,0 +1,18 @@
+[package]
+name = "synapse_events"
+version = "0.1.0"
+edition = "2021"
+authors = ["Erik"]
+
+[lib]
+crate-type = ["cdylib"]
+
+[dependencies]
+anyhow = "1.0.56"
+base64 = "0.13.0"
+pyo3 = { version = "0.16.1", features = ["extension-module", "anyhow"] }
+pythonize = "0.16.0"
+serde = { version = "1.0.136", features = ["derive"] }
+serde_json = "1.0.79"
+sha2 = "0.10.2"
+signed-json = { git = "https://github.com/erikjohnston/rust-signed-json.git" }