diff --git a/Cargo.lock b/Cargo.lock index e5f8472..c9140f0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -182,32 +182,10 @@ dependencies = [ ] [[package]] -name = "basalt" +name = "basalt-bedrock" version = "1.0.0" -dependencies = [ - "ansi_term", - "anyhow", - "bedrock", - "bollard", - "clap", - "futures", - "lazy_static", - "local-ip-address", - "tera", - "tokio", - "tokio-tar", -] - -[[package]] -name = "base64" -version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" - -[[package]] -name = "bedrock" -version = "1.0.0" -source = "git+http://github.com/basalt-rs/bedrock.git?tag=v1.0.0#49a275437bf1be58c0b108667c40fe75a6bb69ac" +checksum = "698cd7e951b77d9ebda5f4427f1828275d5d91d767abe27f45a5a7bd2165cb99" dependencies = [ "comemo", "ecow", @@ -234,6 +212,29 @@ dependencies = [ "url", ] +[[package]] +name = "basalt-cli" +version = "1.0.0" +dependencies = [ + "ansi_term", + "anyhow", + "basalt-bedrock", + "bollard", + "clap", + "futures", + "lazy_static", + "local-ip-address", + "tera", + "tokio", + "tokio-tar", +] + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + [[package]] name = "biblatex" version = "0.10.0" diff --git a/Cargo.toml b/Cargo.toml index 57e090d..582fc81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,28 @@ [package] -name = "basalt" +name = "basalt-cli" version = "1.0.0" edition = "2021" +description = "CLI for managing Basalt competitions and configurations" +authors = ["Jack Branch", "funnyboy-roks "] +repository = "https://github.com/basalt-rs/basalt-cli" +license = "GPL-3.0-only" +keywords = ["basalt", "cli", "competition", "configuration", "pdf"] +categories = [ + "command-line-utilities", + "virtualization", + "development-tools::build-utils", + "config", +] +exclude = [".github"] + +[[bin]] +name = "basalt" +path = "src/main.rs" [dependencies] anyhow = "1.0.95" clap = { version = "4.5.27", features = ["derive"] } -bedrock = { git = "http://github.com/basalt-rs/bedrock.git", tag = "v1.0.0", features = [ +bedrock = { package = "basalt-bedrock", version = "1.0.0", features = [ "tokio", ] } tokio = { version = "1.47.1", features = ["full"] }