diff --git a/tembo-cli/Cargo.lock b/tembo-cli/Cargo.lock index 8025ffceb..7510994b9 100644 --- a/tembo-cli/Cargo.lock +++ b/tembo-cli/Cargo.lock @@ -3162,7 +3162,7 @@ dependencies = [ ] [[package]] -name = "tembo" +name = "tembo-cli" version = "0.8.0" dependencies = [ "anyhow", diff --git a/tembo-cli/Cargo.toml b/tembo-cli/Cargo.toml index 6524badee..9afcbca61 100644 --- a/tembo-cli/Cargo.toml +++ b/tembo-cli/Cargo.toml @@ -1,6 +1,6 @@ workspace = { members = ["temboclient"] } [package] -name = "tembo" +name = "tembo-cli" version = "0.8.0" edition = "2021" authors = ["Tembo.io"] diff --git a/tembo-cli/tests/integration_tests.rs b/tembo-cli/tests/integration_tests.rs index 103322f73..83e374af1 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"; +const CARGO_BIN: &str = "tembo-cli"; #[test] fn help() -> Result<(), Box> {