summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorCyborus <cyborus@cyborus.xyz>2024-08-08 03:48:09 +0200
committerCyborus <cyborus@cyborus.xyz>2024-08-08 03:48:09 +0200
commitdaf086fbfd3c5cae73dbce62b8d1c8f2bfcc904d (patch)
tree8436dbb2a78910e0d0c8ac62282f1e271939e905 /Cargo.toml
parentMerge pull request 'add package fields to Cargo.toml' (#110) from crates-io i... (diff)
downloadforgejo-cli-daf086fbfd3c5cae73dbce62b8d1c8f2bfcc904d.tar.xz
forgejo-cli-daf086fbfd3c5cae73dbce62b8d1c8f2bfcc904d.zip
fix: split binary and package names
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index f1d2b59..b8077d8 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "fj"
+name = "forgejo-cli"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0 OR MIT"
@@ -10,6 +10,10 @@ categories = ["command-line-utilities", "development-tools"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+[[bin]]
+name = "fj"
+path = "src/main.rs"
+
[features]
update-check = ["dep:semver"]