fix some dependencies

This commit is contained in:
2025-10-27 18:54:34 -06:00
parent 4e30be3ebd
commit ebcf5ce4ce
3 changed files with 2662 additions and 1120 deletions
Generated
+2622 -1087
View File
File diff suppressed because it is too large Load Diff
+38 -31
View File
@@ -7,12 +7,12 @@ edition = "2021"
# Web Dependencies # Web Dependencies
# ================ # ================
dioxus-web = { version = "0.6.3", optional = true } dioxus-web = { version = "0.6.3", optional = true }
wasm-bindgen = { version = "0.2.92", optional = true } wasm-bindgen = { version = "^0.2.92", optional = true }
wasm-bindgen-futures = { version = "0.4.42", optional = true } wasm-bindgen-futures = { version = "^0.4.42", optional = true }
wasm-streams = { version = "0.4.0", optional = true } wasm-streams = { version = "^0.4.0", optional = true }
serde-wasm-bindgen = { version = "0.6.5", optional = true } serde-wasm-bindgen = { version = "^0.6.5", optional = true }
js-sys = { version = "0.3.70", optional = true } js-sys = { version = "^0.3.70", optional = true }
web-sys = { version = "0.3.72", features = [ web-sys = { version = "^0.3.72", features = [
"WebTransport", "WebTransport",
"console", "console",
"WebTransportOptions", "WebTransportOptions",
@@ -54,14 +54,14 @@ web-sys = { version = "0.3.72", features = [
"AudioSampleFormat", "AudioSampleFormat",
"Storage", "Storage",
], optional = true } ], optional = true }
gloo-timers = { version = "0.3.0", features = ["futures"], optional = true } gloo-timers = { version = "^0.3.0", features = ["futures"], optional = true }
tracing-web = { version = "0.1.3", optional = true } tracing-web = { version = "^0.1.3", optional = true }
# Desktop Dependecies # Desktop Dependecies
# =================== # ===================
dioxus-desktop = { version = "0.6.3", optional = true } dioxus-desktop = { version = "0.6.3", optional = true }
tokio = { version = "1.41.1", features = ["net", "rt"], optional = true } tokio = { version = "^1.41.1", features = ["net", "rt"], optional = true }
tokio-rustls = { version = "0.26.0", optional = true } tokio-rustls = { version = "^0.26.0", optional = true }
opus = { version = "0.3.0", optional = true } opus = { version = "0.3.0", optional = true }
cpal = { version = "0.15.3", optional = true } cpal = { version = "0.15.3", optional = true }
dasp_ring_buffer = { version = "0.11.0", optional = true } dasp_ring_buffer = { version = "0.11.0", optional = true }
@@ -71,35 +71,41 @@ dasp_ring_buffer = { version = "0.11.0", optional = true }
dioxus = { version = "0.6.3" } dioxus = { version = "0.6.3" }
once_cell = "1.19.0" once_cell = "1.19.0"
asynchronous-codec = { workspace = true } asynchronous-codec = { workspace = true }
futures = "0.3.30" futures = "^0.3.30"
merge-io = "0.3.0" merge-io = "^0.3.0"
mumble-protocol = { workspace = true } mumble-protocol = { workspace = true }
serde_json = "1.0.117" serde_json = "1"
tokio-util = { version = "0.7.11", features = ["codec", "compat"] } tokio-util = { version = "^0.7.11", features = ["codec", "compat"] }
byteorder = "1.5.0" byteorder = "1.5"
ogg = "0.9.1" ogg = "^0.9.1"
ordermap = "0.5.3" ordermap = "^0.5.3"
html-purifier = "0.3.0" html-purifier = "^0.3.0"
markdown = "0.3.0" markdown = "^0.3.0"
futures-channel = "0.3.30" futures-channel = "^0.3.30"
mumble-web2-common = { workspace = true } mumble-web2-common = { workspace = true }
serde = { workspace = true } serde = { workspace = true }
tracing-subscriber = { version = "0.3.18", features = ["ansi"] } tracing-subscriber = { version = "^0.3.18", features = ["ansi"] }
tracing = "0.1.40" tracing = "^0.1.40"
color-eyre = "0.6.3" color-eyre = "^0.6.3"
crossbeam-queue = "0.3.11" crossbeam-queue = "^0.3.11"
lol_html = "2.2.0" lol_html = "^2.2.0"
rfd = "0.15.2" rfd = "^0.15.2"
base64 = "0.22" base64 = "^0.22"
mime_guess = "2.0.5" mime_guess = "^2.0.5"
async_cell = "0.2.3" async_cell = "^0.2.3"
reqwest = { version = "0.12.22", features = ["json"] } reqwest = { version = "^0.12.22", features = ["json"] }
# Denoising # Denoising
# ========= # =========
deep_filter = { git = "https://github.com/Rikorose/DeepFilterNet.git", rev = "d375b2d8309e0935d165700c91da9de862a99c31" } deep_filter = { git = "https://github.com/Rikorose/DeepFilterNet.git", rev = "d375b2d8309e0935d165700c91da9de862a99c31", features = ["tract"] }
crossbeam = "0.8.4" crossbeam = "0.8.4"
[patch.crates-io]
tract-hir = "=0.12.4"
tract-core = "=0.12.4"
tract-onnx = "=0.12.4"
tract-pulse = "=0.12.4"
[features] [features]
web = [ web = [
"dioxus/web", "dioxus/web",
@@ -112,6 +118,7 @@ web = [
"web-sys", "web-sys",
"gloo-timers", "gloo-timers",
"tracing-web", "tracing-web",
"deep_filter/wasm",
] ]
desktop = [ desktop = [
"dioxus/desktop", "dioxus/desktop",
+2 -2
View File
@@ -7,13 +7,13 @@ edition = "2021"
color-eyre = "^0.6" color-eyre = "^0.6"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = "1" serde_json = "1"
tokio = { version = "^1.37", features = ["full"] } tokio = { version = "1", features = ["full"] }
tokio-rustls = "0.26" tokio-rustls = "0.26"
toml = "0.8" toml = "0.8"
tracing = { version = "^0.1.40", features = ["async-await"] } tracing = { version = "^0.1.40", features = ["async-await"] }
tracing-subscriber = { version = "^0.3.18", features = ["env-filter"] } tracing-subscriber = { version = "^0.3.18", features = ["env-filter"] }
mumble-web2-common = { workspace = true } mumble-web2-common = { workspace = true }
salvo = { version = "^0.74.2", features = [ salvo = { version = "^0.84.2", features = [
"quinn", "quinn",
"eyre", "eyre",
"rustls", "rustls",