Skip to content

Commit

Permalink
build: update cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
displexic committed Dec 1, 2023
1 parent 586a7bf commit 61e2619
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 19 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,30 @@
[package]
name = "blue"
name = "blue-cli"
version = "0.0.1"
description = "Fast and extensible workspace manager"
edition = "2021"
readme = "README.md"
homepage = "https://github.com/slekup/blue"
repository = "https://github.com/slekup/blue"
keywords = ["workspace", "manager", "cli", "tool", "fast", "extensible"]
categories = ["cli", "workspace", "manager", "tool"]
license = "GPL-3.0"
license-file = "LICENSE"
default-run = "blue"
authors = ["Slekup <slekupvimplyrataqq@protonmail.com>"]

[[bin]]
name = "blue"
path = "src/main.rs"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[profile.release]
lto = true
codegen-units = 1

[dependencies]
clap = { version = "4.4.8", features = ["derive"] }
home = "0.5.5"
serde = { version = "1.0.193", features = ["derive"] }
serde_derive = "1.0.193"
toml = "0.8.8"

[profile.release]
lto = true
codegen-units = 1
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use blue::commands::check;
use blue::commands::setup;
use blue::config::Config;
use blue_cli::commands::check;
use blue_cli::commands::setup;
use blue_cli::config::Config;
use clap::{Parser, Subcommand};

#[derive(Subcommand, Debug)]
Expand Down

0 comments on commit 61e2619

Please sign in to comment.