Skip to content

Commit

Permalink
Merge pull request #5 from waldirborbajr/fixes
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
waldirborbajr committed Dec 11, 2023
2 parents 3a9a34f + 6894519 commit 003bee8
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 5 deletions.
File renamed without changes
14 changes: 13 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "GitPush in rust!"
repository = "https://github.com/waldirborbajr/gitpush"
homepage = "https://github.com/waldirborbajr/gitpush"
readme = "README.md"
keywords = ["gitpush", "devops", "git"]
keywords = ["gitpush", "devops", "git", "cli", "terminal"]
license = "MIT"

[[bin]]
Expand All @@ -33,3 +33,15 @@ opt-level = 3
# 3: all optimizations
# "s": optimize for binary size
# "z": optimize for binary size, but also turn off loop vectorization.

[profile.release-lto]
inherits = "release"
opt-level = 3
debug = "none"
strip = "symbols"
debug-assertions = false
overflow-checks = false
lto = "fat"
panic = "abort"
incremental = false
codegen-units = 1
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@

# GitPush - DevOps Automation Command Line Tool

[![Lint](https://github.com/waldirborbajr/gitpush/actions/workflows/linter.yaml/badge.svg)](https://github.com/waldirborbajr/gitpush/actions/workflows/linter.yaml)
[![CI](https://github.com/waldirborbajr/gitpush/actions/workflows/ci.yaml/badge.svg)](https://github.com/waldirborbajr/gitpush/actions/workflows/ci.yaml)
[![Release](https://github.com/waldirborbajr/gitpush/actions/workflows/release.yaml/badge.svg)](https://github.com/waldirborbajr/gitpush/actions/workflows/release.yaml)
[![Lint](https://github.com/waldirborbajr/gitpush/actions/workflows/linter.yaml/badge.svg)](https://github.com/waldirborbajr/gitpush/actions/workflows/linter.yaml)
[![CI](https://github.com/waldirborbajr/gitpush/actions/workflows/ci.yaml/badge.svg)](https://github.com/waldirborbajr/gitpush/actions/workflows/ci.yaml)
[![Release](https://github.com/waldirborbajr/gitpush/actions/workflows/release.yaml/badge.svg)](https://github.com/waldirborbajr/gitpush/actions/workflows/release.yaml)
[![Security audit](https://github.com/waldirborbajr/gitpush/actions/workflows/audit.yaml/badge.svg)](https://github.com/waldirborbajr/gitpush/actions/workflows/audit.yaml)
[![Release to crates.io](https://github.com/waldirborbajr/gitpush/actions/workflows/crates.yaml/badge.svg)](https://github.com/waldirborbajr/gitpush/actions/workflows/crates.yaml)

<p>
<img src="./assets/gitpush-logo.png" width="120", height="120"/>
<img src="./.assets/gitpush-logo.png" width="120", height="120"/>
<br>
</p>

Expand Down
11 changes: 11 additions & 0 deletions rustfmt.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@ format_code_in_doc_comments = true
format_macro_matchers = true
format_strings = true
imports_granularity = "One"
#imports_granularity = "Module"
normalize_doc_attributes = true
tab_spaces = 2
unstable_features = true
#
edition = "2021"
max_width = 120
# max_width = 80
use_small_heuristics = "Max"
use_field_init_shorthand = true
match_arm_leading_pipes = "Preserve"
#
group_imports = "StdExternalCrate"
reorder_impl_items = true

0 comments on commit 003bee8

Please sign in to comment.