From c08a420f2a47414c5b4dc25ceea1e4eb822681d2 Mon Sep 17 00:00:00 2001 From: Boshen Date: Mon, 1 Apr 2024 10:19:46 +0800 Subject: [PATCH] chore: rename crate name `release-oxc` to `cargo-release-oxc` --- Cargo.lock | 26 +++++++++++++------------- Cargo.toml | 2 +- src/main.rs | 2 +- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 93f05cb..9821ec4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -119,6 +119,19 @@ dependencies = [ "serde", ] +[[package]] +name = "cargo-release-oxc" +version = "0.0.1" +dependencies = [ + "anyhow", + "bpaf", + "cargo_metadata", + "git-cliff-core", + "glob", + "semver", + "toml_edit", +] + [[package]] name = "cargo_metadata" version = "0.18.1" @@ -941,19 +954,6 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" -[[package]] -name = "release-oxc" -version = "0.0.1" -dependencies = [ - "anyhow", - "bpaf", - "cargo_metadata", - "git-cliff-core", - "glob", - "semver", - "toml_edit", -] - [[package]] name = "rle-decode-fast" version = "1.0.3" diff --git a/Cargo.toml b/Cargo.toml index 68507f7..f2f0724 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "release-oxc" +name = "cargo-release-oxc" version = "0.0.1" edition = "2021" description = "Oxc release management" diff --git a/src/main.rs b/src/main.rs index 09b028f..535b3c1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,6 +1,6 @@ use anyhow::Result; -use release_oxc::{release_command, Publish, ReleaseCommand, Update}; +use cargo_release_oxc::{release_command, Publish, ReleaseCommand, Update}; fn main() -> Result<()> { let command = release_command().fallback_to_usage().run();