diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-06 21:55:04 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-06 21:58:40 +0200 |
commit | 1b3c5a3cbfe938e36cab02732e1509753205a2c0 (patch) | |
tree | 156fa74902979ff05c97cdfeb4b651e001b5330b | |
parent | chore(version): v0.1.0 (diff) | |
download | back-1b3c5a3cbfe938e36cab02732e1509753205a2c0.zip |
build(Cargo.toml): Use a different name for the crate
Obviously, `back` is already taken.
-rw-r--r-- | Cargo.lock | 48 | ||||
-rw-r--r-- | Cargo.toml | 6 |
2 files changed, 29 insertions, 25 deletions
diff --git a/Cargo.lock b/Cargo.lock index 5c9991f..a2fee14 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -157,30 +157,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" [[package]] -name = "back" -version = "0.1.0" -dependencies = [ - "bytes", - "clap", - "git-bug", - "gix", - "http", - "http-body-util", - "hyper", - "hyper-util", - "log", - "markdown", - "rss", - "serde", - "serde_json", - "stderrlog", - "thiserror", - "tokio", - "url", - "vy", -] - -[[package]] name = "backtrace" version = "0.3.75" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -682,6 +658,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" [[package]] +name = "git-back" +version = "0.1.0" +dependencies = [ + "bytes", + "clap", + "git-bug", + "gix", + "http", + "http-body-util", + "hyper", + "hyper-util", + "log", + "markdown", + "rss", + "serde", + "serde_json", + "stderrlog", + "thiserror", + "tokio", + "url", + "vy", +] + +[[package]] name = "git-bug" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/Cargo.toml b/Cargo.toml index ac8b303..df3ea05 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ # If not, see <https://www.gnu.org/licenses/agpl.txt>. [package] -name = "back" +name = "git-back" description = "An extremely simple git bug visualization system. Inspired by TVL's panettone." version = "0.1.0" edition = "2024" @@ -21,6 +21,10 @@ repository = "https://git.foss-syndicate.org/vhack.eu/git_bug/back" # categories = [""] # keywords = ["", ""] +[[bin]] +name = "back" +path = "src/main.rs" + [dependencies] git-bug = { version = "0.2.3" } |