diff --git a/tembo-cli/Cargo.lock b/tembo-cli/Cargo.lock index 8caf2cd00..a91407525 100644 --- a/tembo-cli/Cargo.lock +++ b/tembo-cli/Cargo.lock @@ -3163,7 +3163,7 @@ dependencies = [ [[package]] name = "tembo-cli" -version = "0.9.0" +version = "0.10.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/tembo-cli/Cargo.toml b/tembo-cli/Cargo.toml index 7033c2641..e5e2463ce 100644 --- a/tembo-cli/Cargo.toml +++ b/tembo-cli/Cargo.toml @@ -1,7 +1,7 @@ workspace = { members = ["temboclient"] } [package] name = "tembo-cli" -version = "0.9.0" +version = "0.10.0" edition = "2021" authors = ["Tembo.io"] description = "The CLI for Tembo" @@ -12,6 +12,10 @@ repository = "https://github.com/tembo-io/tembo-cli" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[[bin]] +name = "tembo" +path = "src/main.rs" + [dependencies] anyhow = "1.0.71" clap = { version = "4.3.12", features = ["cargo", "wrap_help"] } diff --git a/tembo-cli/tests/integration_tests.rs b/tembo-cli/tests/integration_tests.rs index 83e374af1..103322f73 100644 --- a/tembo-cli/tests/integration_tests.rs +++ b/tembo-cli/tests/integration_tests.rs @@ -2,7 +2,7 @@ use assert_cmd::prelude::*; // Add methods on commands use predicates::prelude::*; // Used for writing assertions use std::process::Command; // Run programs -const CARGO_BIN: &str = "tembo-cli"; +const CARGO_BIN: &str = "tembo"; #[test] fn help() -> Result<(), Box> {