Merge pull request #30 from offendingcommit/feat/desktop-auto-discover

feat(desktop): auto-discover Honcho instances on localhost
This commit is contained in:
Offending Commit
2026-05-28 14:23:49 -05:00
committed by GitHub
8 changed files with 463 additions and 6 deletions

View File

@@ -923,6 +923,21 @@ dependencies = [
"new_debug_unreachable",
]
[[package]]
name = "futures"
version = "0.3.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
version = "0.3.32"
@@ -930,6 +945,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
@@ -984,6 +1000,7 @@ version = "0.3.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
@@ -2268,6 +2285,7 @@ dependencies = [
name = "openconcho"
version = "0.11.0"
dependencies = [
"futures",
"serde",
"serde_json",
"tauri",
@@ -2275,6 +2293,7 @@ dependencies = [
"tauri-plugin-deep-link",
"tauri-plugin-http",
"tauri-plugin-shell",
"tokio",
]
[[package]]