feat: with full support for rust services
Some checks failed
continuous-integration/drone/push Build is failing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-11-26 22:19:34 +01:00
parent 80782e70f9
commit 7a1ad63b57
10 changed files with 593 additions and 25 deletions

View File

@@ -1,6 +1,5 @@
use std::path::PathBuf;
use clap::Args;
use clap::Parser;
use clap::Subcommand;
@@ -62,10 +61,10 @@ async fn main() -> eyre::Result<()> {
let _ = dotenv::dotenv();
let _ = color_eyre::install();
let client = dagger_sdk::connect().await?;
let cli = Command::parse();
let client = dagger_sdk::connect().await?;
match &cli.commands {
Commands::Local { command } => match command {
LocalCommands::Test => {
@@ -107,7 +106,6 @@ async fn main() -> eyre::Result<()> {
}
mod please_release {
use dagger_cuddle_please::{models::CuddlePleaseSrcArgs, DaggerCuddlePleaseAction};
@@ -136,7 +134,7 @@ mod please_release {
}
mod test {
use std::{path::PathBuf};
use std::path::PathBuf;
use dagger_rust::build::RustVersion;