Skip to content

Commit

Permalink
Feature/extra metrics (#101)
Browse files Browse the repository at this point in the history
* Added metrics. Removed metrics flag.

Signed-off-by: Pavel Kirilin <[email protected]>
  • Loading branch information
s3rius authored Oct 23, 2022
1 parent 5eaa8e5 commit 35baf97
Show file tree
Hide file tree
Showing 19 changed files with 696 additions and 458 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
command: build
use-cross: ${{ matrix.job.use-cross }}
toolchain: ${{ matrix.rust }}
args: --release --features=all,metrics --target ${{ matrix.job.target }}
args: --release --features=all --target ${{ matrix.job.target }}

- name: install strip command
shell: bash
Expand Down
17 changes: 13 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ repos:
- id: trailing-whitespace
- repo: local
hooks:

- id: fmt
types:
- rust
Expand Down Expand Up @@ -40,13 +39,23 @@ repos:
- -D
- warnings

- id: build
- id: check
types:
- rust
name: cargo check
language: system
entry: cargo
pass_filenames: false
args:
- check

- id: check-all
types:
- rust
name: cargo build
name: cargo check all
language: system
entry: cargo
pass_filenames: false
args:
- build
- check
- --features=all
Loading

0 comments on commit 35baf97

Please sign in to comment.