summary refs log tree commit diff
path: root/rust
diff options
context:
space:
mode:
authorErik Johnston <erikj@matrix.org>2023-09-05 13:12:50 +0100
committerGitHub <noreply@github.com>2023-09-05 13:12:50 +0100
commitdfcfa9f0eda11b339d51d73cd12167ed6e3c01f0 (patch)
tree5802205badb93f2c77fcfa29d9512be93c756d1d /rust
parentBump twisted from 22.10.0 to 23.8.0 (#16235) (diff)
downloadsynapse-dfcfa9f0eda11b339d51d73cd12167ed6e3c01f0.tar.xz
Bump minimum supported Rust version to 1.61.0 (#16248)
Diffstat (limited to 'rust')
-rw-r--r--rust/Cargo.toml9
1 files changed, 7 insertions, 2 deletions
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index 3ead01c052..16917136db 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -7,7 +7,7 @@ name = "synapse"
 version = "0.1.0"
 
 edition = "2021"
-rust-version = "1.60.0"
+rust-version = "1.61.0"
 
 [lib]
 name = "synapse"
@@ -23,7 +23,12 @@ name = "synapse.synapse_rust"
 anyhow = "1.0.63"
 lazy_static = "1.4.0"
 log = "0.4.17"
-pyo3 = { version = "0.17.1", features = ["macros", "anyhow", "abi3", "abi3-py37"] }
+pyo3 = { version = "0.17.1", features = [
+    "macros",
+    "anyhow",
+    "abi3",
+    "abi3-py37",
+] }
 pyo3-log = "0.8.1"
 pythonize = "0.17.0"
 regex = "1.6.0"