1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
https://github.com/RastislavKish/nvda2speechd/pull/5
commit b996bdfd42df850a3fc846880df93060917e0ca7
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date: Sun Sep 11 17:27:41 2022 +0200
Fix server build on i386
Speech-dispatcher-rs before 0.15.0 had a build issue on i386:
https://gitlab.com/ndarilek/speech-dispatcher-rs/-/issues/5
diff --git a/src/server/Cargo.toml b/src/server/Cargo.toml
index 1ec5de2..87b9a6c 100644
--- a/src/server/Cargo.toml
+++ b/src/server/Cargo.toml
@@ -12,7 +12,7 @@ description = "nvda2speechd server"
serde={version="1.0.137", features=["derive"]}
rmp-serde="1.1.0"
-speech-dispatcher="0.13.0"
+speech-dispatcher="0.15.0"
tungstenite="0.17.2"
url="2.2.2"
|