summaryrefslogtreecommitdiff
path: root/server/editor
diff options
context:
space:
mode:
Diffstat (limited to 'server/editor')
-rw-r--r--server/editor/Cargo.toml18
-rw-r--r--server/editor/src/main.rs2
2 files changed, 10 insertions, 10 deletions
diff --git a/server/editor/Cargo.toml b/server/editor/Cargo.toml
index 4c0fa307..d9dacffc 100644
--- a/server/editor/Cargo.toml
+++ b/server/editor/Cargo.toml
@@ -4,17 +4,17 @@ version = "0.1.0"
edition = "2024"
[dependencies]
-tokio = { version = "1.40.0", features = ["full"] }
-serde_json = "1.0.128"
-log = "0.4.22"
-env_logger = "0.11.5"
-anyhow = "1.0.89"
-tokio-tungstenite = { version = "0.24.0", features = [
+tokio = { version = "1.45.1", features = ["full"] }
+serde_json = "1.0.140"
+log = "0.4.27"
+env_logger = "0.11.8"
+anyhow = "1.0.98"
+tokio-tungstenite = { version = "0.26.2", features = [
"rustls-tls-native-roots",
] }
-serde = { version = "1.0.216", features = ["derive"] }
-rustls = { version = "0.23.13", features = ["ring"] }
-clap = { version = "4.5.23", features = ["derive"] }
+serde = { version = "1.0.219", features = ["derive"] }
+rustls = { version = "0.23.27", features = ["ring"] }
+clap = { version = "4.5.39", features = ["derive"] }
futures-util = "0.3.31"
shlex = "1.3.0"
serde_yml = "0.0.12"
diff --git a/server/editor/src/main.rs b/server/editor/src/main.rs
index 620daeb5..c7cb7933 100644
--- a/server/editor/src/main.rs
+++ b/server/editor/src/main.rs
@@ -168,7 +168,7 @@ async fn handle_conn(
debug!("-> {p:?}");
write
.send(tokio_tungstenite::tungstenite::Message::Text(
- serde_json::to_string(&p).unwrap(),
+ serde_json::to_string(&p).unwrap().into(),
))
.await?;
}