Skip to content

Commit

Permalink
feat(puccinier): minimize dependencies (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stonks3141 authored Oct 27, 2023
1 parent 4c9482f commit e6393da
Show file tree
Hide file tree
Showing 11 changed files with 948 additions and 1,063 deletions.
188 changes: 19 additions & 169 deletions Cargo.lock

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

13 changes: 8 additions & 5 deletions puccinier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ description = "Generate the other Catppuccin flavours off a template file writte
categories = ["command-line-utilities", "template-engine"]

[dependencies]
clap = { version = "3.2.15", features = ["cargo"] }
serde = { version = "1.0.140", features = ["serde_derive"] }
serde_json = "1.0.82"
lazy_static = "1.4.0"
regex = "1.6.0"
xflags = "0.3"
regex = { version = "1.6", default-features = false, features = ["std"] }

[profile.release]
opt-level = "z"
codegen-units = 1
lto = true
strip = true
Loading

0 comments on commit e6393da

Please sign in to comment.