diff --git a/cuddle_cli/Cargo.toml b/cuddle/Cargo.toml similarity index 95% rename from cuddle_cli/Cargo.toml rename to cuddle/Cargo.toml index 86d93df..4b9a5d8 100644 --- a/cuddle_cli/Cargo.toml +++ b/cuddle/Cargo.toml @@ -1,11 +1,11 @@ [package] -name = "cuddle_cli" +name = "cuddle" description = "cuddle is a shuttle inspired script and configuration management tool. It enables sharing of workflows on developers workstations and ci" repository = "https://git.front.kjuulh.io/kjuulh/cuddle" readme = "../README.md" license-file = "../LICENSE" -publishable = true -version = "0.1.0" +publish = true +version = "0.2.0" edition = "2021" [[bin]] diff --git a/cuddle_cli/src/actions/mod.rs b/cuddle/src/actions/mod.rs similarity index 100% rename from cuddle_cli/src/actions/mod.rs rename to cuddle/src/actions/mod.rs diff --git a/cuddle_cli/src/actions/shell.rs b/cuddle/src/actions/shell.rs similarity index 100% rename from cuddle_cli/src/actions/shell.rs rename to cuddle/src/actions/shell.rs diff --git a/cuddle_cli/src/cli/mod.rs b/cuddle/src/cli/mod.rs similarity index 100% rename from cuddle_cli/src/cli/mod.rs rename to cuddle/src/cli/mod.rs diff --git a/cuddle_cli/src/cli/subcommands/init.rs b/cuddle/src/cli/subcommands/init.rs similarity index 100% rename from cuddle_cli/src/cli/subcommands/init.rs rename to cuddle/src/cli/subcommands/init.rs diff --git a/cuddle_cli/src/cli/subcommands/mod.rs b/cuddle/src/cli/subcommands/mod.rs similarity index 100% rename from cuddle_cli/src/cli/subcommands/mod.rs rename to cuddle/src/cli/subcommands/mod.rs diff --git a/cuddle_cli/src/cli/subcommands/render_template.rs b/cuddle/src/cli/subcommands/render_template.rs similarity index 100% rename from cuddle_cli/src/cli/subcommands/render_template.rs rename to cuddle/src/cli/subcommands/render_template.rs diff --git a/cuddle_cli/src/cli/subcommands/x.rs b/cuddle/src/cli/subcommands/x.rs similarity index 100% rename from cuddle_cli/src/cli/subcommands/x.rs rename to cuddle/src/cli/subcommands/x.rs diff --git a/cuddle_cli/src/config.rs b/cuddle/src/config.rs similarity index 100% rename from cuddle_cli/src/config.rs rename to cuddle/src/config.rs diff --git a/cuddle_cli/src/context.rs b/cuddle/src/context.rs similarity index 100% rename from cuddle_cli/src/context.rs rename to cuddle/src/context.rs diff --git a/cuddle_cli/src/main.rs b/cuddle/src/main.rs similarity index 100% rename from cuddle_cli/src/main.rs rename to cuddle/src/main.rs diff --git a/cuddle_cli/src/model.rs b/cuddle/src/model.rs similarity index 100% rename from cuddle_cli/src/model.rs rename to cuddle/src/model.rs diff --git a/cuddle_cli/src/util/git.rs b/cuddle/src/util/git.rs similarity index 100% rename from cuddle_cli/src/util/git.rs rename to cuddle/src/util/git.rs diff --git a/cuddle_cli/src/util/mod.rs b/cuddle/src/util/mod.rs similarity index 100% rename from cuddle_cli/src/util/mod.rs rename to cuddle/src/util/mod.rs