feat: update to dagger-5.1

This commit is contained in:
2023-04-29 23:36:53 +02:00
committed by Kasper Juul Hermansen
parent 6937ef0ace
commit eb7470c604
4 changed files with 271 additions and 12 deletions

View File

@@ -89,6 +89,7 @@ impl InnerCliSession {
while let Ok(Some(line)) = stdout_bufr.next_line().await {
if let Ok(conn) = serde_json::from_str::<ConnectParams>(&line) {
sender.send(conn).await.unwrap();
continue;
}
if let Some(logger) = &logger {

View File

@@ -1,6 +1,6 @@
#![deny(warnings)]
pub const DAGGER_ENGINE_VERSION: &'static str = "0.4.2";
pub const DAGGER_ENGINE_VERSION: &'static str = "0.5.1";
pub mod cli_session;
pub mod config;