From c5cf2ead22172f1ad6601aa98bbd10f2c6ee4e1b Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sat, 30 Mar 2024 21:19:16 +0100 Subject: [PATCH] feat: use upstream dagger Signed-off-by: kjuulh --- Cargo.lock | 17 +++++++++-------- ci/Cargo.toml | 4 +--- crates/cuddle-rust-cli-plan/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2db3926..aeb1771 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -307,7 +307,7 @@ dependencies = [ [[package]] name = "cuddle-ci" version = "0.2.0" -source = "git+https://git.front.kjuulh.io/kjuulh/dagger-components?branch=main#f4e7ced9d89ee1753c0cac12d77df9c20d135fab" +source = "git+https://git.front.kjuulh.io/kjuulh/dagger-components?branch=main#0539e375b1cd8523804a5240e0250d9856585d93" dependencies = [ "async-trait", "chrono", @@ -340,12 +340,12 @@ dependencies = [ [[package]] name = "dagger-components" version = "0.1.0" -source = "git+https://git.front.kjuulh.io/kjuulh/dagger-components?branch=main#f4e7ced9d89ee1753c0cac12d77df9c20d135fab" +source = "git+https://git.front.kjuulh.io/kjuulh/dagger-components?branch=main#0539e375b1cd8523804a5240e0250d9856585d93" [[package]] name = "dagger-cuddle-please" version = "0.2.0" -source = "git+https://git.front.kjuulh.io/kjuulh/dagger-components?branch=main#f4e7ced9d89ee1753c0cac12d77df9c20d135fab" +source = "git+https://git.front.kjuulh.io/kjuulh/dagger-components?branch=main#0539e375b1cd8523804a5240e0250d9856585d93" dependencies = [ "async-trait", "dagger-sdk", @@ -355,7 +355,7 @@ dependencies = [ [[package]] name = "dagger-rust" version = "0.2.0" -source = "git+https://git.front.kjuulh.io/kjuulh/dagger-components?branch=main#f4e7ced9d89ee1753c0cac12d77df9c20d135fab" +source = "git+https://git.front.kjuulh.io/kjuulh/dagger-components?branch=main#0539e375b1cd8523804a5240e0250d9856585d93" dependencies = [ "async-trait", "dagger-sdk", @@ -365,8 +365,9 @@ dependencies = [ [[package]] name = "dagger-sdk" -version = "0.3.2" -source = "git+https://github.com/kjuulh/dagger.git?branch=feat/with-send-sync#e08fcaef20b467968f0bba09447e62e0146fb51d" +version = "0.9.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79bc59868e62ea1451f158aeb8fbb36c5dd2fb098f31bf408dbd165251674edf" dependencies = [ "async-trait", "base64", @@ -798,9 +799,9 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hex-literal" -version = "0.3.4" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0" +checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" [[package]] name = "http" diff --git a/ci/Cargo.toml b/ci/Cargo.toml index 8bda8b7..aad69d9 100644 --- a/ci/Cargo.toml +++ b/ci/Cargo.toml @@ -3,12 +3,10 @@ name = "ci" version = "0.1.0" edition = "2021" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] tokio.workspace = true -dagger-sdk = {git = "https://github.com/kjuulh/dagger.git", branch = "feat/with-send-sync"} +dagger-sdk = "0.9.8" eyre = { version = "0.6.12" } dagger-components = { git = "https://git.front.kjuulh.io/kjuulh/dagger-components", branch = "main" } diff --git a/crates/cuddle-rust-cli-plan/Cargo.toml b/crates/cuddle-rust-cli-plan/Cargo.toml index 9f886b3..703b06a 100644 --- a/crates/cuddle-rust-cli-plan/Cargo.toml +++ b/crates/cuddle-rust-cli-plan/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] tokio.workspace = true -dagger-sdk = {git = "https://github.com/kjuulh/dagger.git", branch = "feat/with-send-sync"} +dagger-sdk = "0.9.8" eyre = { version = "0.6.12" } dagger-components = { git = "https://git.front.kjuulh.io/kjuulh/dagger-components", branch = "main" }