set connector back to crate version

This commit is contained in:
jasonwitty 2025-11-17 14:15:39 -08:00
parent 1c01902a71
commit 6eb1809309
2 changed files with 23 additions and 2 deletions

23
Cargo.lock generated
View File

@ -2173,7 +2173,7 @@ dependencies = [
"ratatui", "ratatui",
"serde", "serde",
"serde_json", "serde_json",
"socktop_connector", "socktop_connector 1.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
"sysinfo", "sysinfo",
"tempfile", "tempfile",
"tokio", "tokio",
@ -2234,6 +2234,27 @@ dependencies = [
"web-sys", "web-sys",
] ]
[[package]]
name = "socktop_connector"
version = "1.50.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61ea6a5733e71da6d5c94d23265b85f7041305bca51e6c33e7104464444047bc"
dependencies = [
"flate2",
"futures-util",
"prost",
"prost-build",
"protoc-bin-vendored",
"rustls 0.23.31",
"rustls-pemfile",
"serde",
"serde_json",
"thiserror 2.0.12",
"tokio",
"tokio-tungstenite 0.24.0",
"url",
]
[[package]] [[package]]
name = "stable_deref_trait" name = "stable_deref_trait"
version = "1.2.0" version = "1.2.0"

View File

@ -9,7 +9,7 @@ readme = "README.md"
[dependencies] [dependencies]
# socktop connector for agent communication # socktop connector for agent communication
socktop_connector = { path = "../socktop_connector" } socktop_connector = "1.50.0"
tokio = { workspace = true } tokio = { workspace = true }
futures-util = { workspace = true } futures-util = { workspace = true }