Make the Docker image cross-compile without QEMU emulation (#129)

* Bump all dependencies & disable the pyo3 feature by default.
* Make the Docker image cross-compile without QEMU emulation
* Add a build cache on the Docker image
This commit is contained in:
Quentin Gliech
2023-09-28 20:42:26 +02:00
committed by GitHub
parent 71f24cf2b9
commit 4b9f2e2d64
8 changed files with 459 additions and 275 deletions

View File

@@ -6,16 +6,16 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
string_cache = "0.8.0"
string_cache = "0.8.7"
serial_test = "2.0.0"
openssl = "0.10.55"
postgres = "0.19.0"
openssl = "0.10.57"
postgres = "0.19.7"
postgres-openssl = "0.5.0"
rand = "0.8.0"
rand = "0.8.5"
synapse_compress_state = { path = "../", features = ["no-progress-bars"] }
synapse_auto_compressor = { path = "../synapse_auto_compressor/" }
env_logger = "0.10.0"
log = "0.4.14"
log = "0.4.20"
[dependencies.state-map]
git = "https://github.com/matrix-org/rust-matrix-state-map"