refactor: move commands and misc out of main binary package

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-08-01 15:34:24 +02:00
parent 8b83b9c14d
commit c7793f7422
24 changed files with 580 additions and 460 deletions

54
Cargo.lock generated
View File

@@ -344,7 +344,36 @@ dependencies = [
"chrono",
"clap",
"conventional_commit_parser",
"cuddle-please-commands",
"cuddle-please-frontend",
"cuddle-please-misc",
"dotenv",
"git-cliff-core",
"lazy_static",
"parse-changelog",
"pretty_assertions",
"regex",
"reqwest",
"semver",
"serde",
"serde_yaml",
"tempdir",
"tracing",
"tracing-subscriber",
"tracing-test",
"url",
]
[[package]]
name = "cuddle-please-commands"
version = "0.1.0"
dependencies = [
"anyhow",
"chrono",
"clap",
"conventional_commit_parser",
"cuddle-please-frontend",
"cuddle-please-misc",
"dotenv",
"git-cliff-core",
"lazy_static",
@@ -379,6 +408,31 @@ dependencies = [
"tracing-test",
]
[[package]]
name = "cuddle-please-misc"
version = "0.1.0"
dependencies = [
"anyhow",
"chrono",
"clap",
"conventional_commit_parser",
"dotenv",
"git-cliff-core",
"lazy_static",
"parse-changelog",
"pretty_assertions",
"regex",
"reqwest",
"semver",
"serde",
"serde_yaml",
"tempdir",
"tracing",
"tracing-subscriber",
"tracing-test",
"url",
]
[[package]]
name = "deunicode"
version = "0.4.3"