This commit is contained in:
dr-frmr 2024-01-08 13:16:03 -03:00
parent 2a4349d3d3
commit 0d74df67a7
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View File

@ -2092,7 +2092,7 @@ checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
[[package]]
name = "uqbar_process_lib"
version = "0.4.0"
source = "git+ssh://git@github.com/uqbar-dao/process_lib.git?rev=a0af5c1#a0af5c10a2e5fb535c5fda753c57408cf5a7679f"
source = "git+ssh://git@github.com/uqbar-dao/process_lib.git?rev=6228e0f#6228e0fe59c651fed5d3c977e4623e7d404c3c10"
dependencies = [
"anyhow",
"bincode",

View File

@ -217,9 +217,9 @@ async fn spawn_provider_read_stream(
.to_string()
.into_bytes(),
metadata: None,
capabilities: vec![],
}),
payload: None,
signed_capabilities: None,
})
.await
.unwrap();
@ -249,9 +249,9 @@ async fn bind_websockets(our: &str, send_to_loop: &MessageSender) {
.unwrap(),
metadata: None,
expects_response: None,
capabilities: vec![],
}),
payload: None,
signed_capabilities: None,
})
.await;
}
@ -323,12 +323,12 @@ async fn handle_external_websocket_passthrough(
.unwrap(),
metadata: None,
expects_response: None,
capabilities: vec![],
}),
payload: Some(Payload {
bytes: json.to_string().as_bytes().to_vec(),
mime: None,
}),
signed_capabilities: None,
})
.await;
}