Skip to content

Commit

Permalink
Change project name to the chosen, add profile release, update lock
Browse files Browse the repository at this point in the history
  • Loading branch information
isbm committed Apr 5, 2024
1 parent 70c50f0 commit aaf6ff4
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 15 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

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

9 changes: 8 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "complicenz"
name = "licemage"
version = "0.1.0"
edition = "2021"

Expand All @@ -10,3 +10,10 @@ colored = "2.1.0"
lazy_static = { version = "1.4.0", features = ["spin"] }
phf = { version = "0.11.2", features = ["macros"] }
rs-release = "0.1.9"

[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
4 changes: 2 additions & 2 deletions src/clidef.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ use clap::{Arg, Command};
use colored::Colorize;

pub fn cli(version: &'static str) -> Command {
Command::new("complicenz")
Command::new("licemage")
.version(version)
.about("Image License Scanner")
.about("licemage - image license scanner")
.arg(
Arg::new("path")
.short('p')
Expand Down

0 comments on commit aaf6ff4

Please sign in to comment.