Update dependencies to latest versions
All checks were successful
Gitea Actions Demo / build (push) Successful in 1m12s

- Update rand from 0.8.5 to 0.9.1
- Update tokio-tungstenite from 0.24.0 to 0.27.0
- Update all other dependencies to latest compatible versions
- Fix API breaking change: replace text.into_bytes() with text.as_bytes()
- All tests passing, no functionality changes
This commit is contained in:
2025-06-30 17:55:41 +08:00
parent e2bd5e9be5
commit b419463bb4
3 changed files with 416 additions and 516 deletions

View File

@@ -143,7 +143,7 @@ async fn pipe(connect_addr: String) -> anyhow::Result<()> {
match message {
Message::Text(text) => {
let data = text.into_bytes();
let data = text.as_bytes();
let wrapper =
serde_json::from_slice::<clash_conn_msg::ClashConnectionsWrapper>(&data);