This commit is contained in:
2026-05-08 20:48:29 +08:00
parent abf1f1ebea
commit 94975e4735
82 changed files with 7786 additions and 1012 deletions

73
server-rs/Cargo.lock generated
View File

@@ -82,6 +82,7 @@ dependencies = [
"axum",
"base64 0.22.1",
"dotenvy",
"futures-util",
"hmac",
"http-body-util",
"image",
@@ -106,6 +107,7 @@ dependencies = [
"platform-auth",
"platform-llm",
"platform-oss",
"platform-speech",
"reqwest 0.12.28",
"serde",
"serde_json",
@@ -117,6 +119,7 @@ dependencies = [
"time",
"tokio",
"tokio-stream",
"tokio-tungstenite 0.27.0",
"tower",
"tower-http",
"tracing",
@@ -221,6 +224,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
dependencies = [
"axum-core",
"base64 0.22.1",
"bytes",
"form_urlencoded",
"futures-util",
@@ -239,8 +243,10 @@ dependencies = [
"serde_json",
"serde_path_to_error",
"serde_urlencoded",
"sha1",
"sync_wrapper 1.0.2",
"tokio",
"tokio-tungstenite 0.29.0",
"tower",
"tower-layer",
"tower-service",
@@ -1220,7 +1226,7 @@ dependencies = [
"tokio",
"tokio-rustls",
"tower-service",
"webpki-roots",
"webpki-roots 1.0.7",
]
[[package]]
@@ -2204,6 +2210,22 @@ dependencies = [
"tokio",
]
[[package]]
name = "platform-speech"
version = "0.1.0"
dependencies = [
"base64 0.22.1",
"bytes",
"flate2",
"futures-util",
"reqwest 0.12.28",
"serde",
"serde_json",
"tokio",
"tokio-tungstenite 0.27.0",
"uuid",
]
[[package]]
name = "png"
version = "0.18.1"
@@ -2620,7 +2642,7 @@ dependencies = [
"wasm-bindgen-futures",
"wasm-streams",
"web-sys",
"webpki-roots",
"webpki-roots 1.0.7",
]
[[package]]
@@ -3378,7 +3400,7 @@ dependencies = [
"spacetimedb-schema",
"thiserror 1.0.69",
"tokio",
"tokio-tungstenite",
"tokio-tungstenite 0.27.0",
]
[[package]]
@@ -3699,9 +3721,25 @@ dependencies = [
"futures-util",
"log",
"native-tls",
"rustls",
"rustls-pki-types",
"tokio",
"tokio-native-tls",
"tungstenite",
"tokio-rustls",
"tungstenite 0.27.0",
"webpki-roots 0.26.11",
]
[[package]]
name = "tokio-tungstenite"
version = "0.29.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c"
dependencies = [
"futures-util",
"log",
"tokio",
"tungstenite 0.29.0",
]
[[package]]
@@ -3884,12 +3922,30 @@ dependencies = [
"log",
"native-tls",
"rand 0.9.4",
"rustls",
"rustls-pki-types",
"sha1",
"thiserror 2.0.18",
"url",
"utf-8",
]
[[package]]
name = "tungstenite"
version = "0.29.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8"
dependencies = [
"bytes",
"data-encoding",
"http 1.4.0",
"httparse",
"log",
"rand 0.9.4",
"sha1",
"thiserror 2.0.18",
]
[[package]]
name = "type1-encoding-parser"
version = "0.1.1"
@@ -4169,6 +4225,15 @@ dependencies = [
"libwebp-sys",
]
[[package]]
name = "webpki-roots"
version = "0.26.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
dependencies = [
"webpki-roots 1.0.7",
]
[[package]]
name = "webpki-roots"
version = "1.0.7"