chore: run cargo update (#295062)

This commit is contained in:
Raymond Zhao
2026-02-13 10:58:40 -08:00
committed by GitHub
parent 0165d77665
commit 965d950c25
4 changed files with 1218 additions and 657 deletions

View File

@@ -69,7 +69,7 @@ pub async fn start_json_rpc<C: Send + Sync + 'static, S: Clone>(
n = read.read_line(&mut read_buf) => {
let r = match n {
Ok(0) => return Ok(None),
Ok(n) => dispatcher.dispatch(read_buf[..n].as_bytes()),
Ok(n) => dispatcher.dispatch(&read_buf.as_bytes()[..n]),
Err(e) => return Err(e)
};