Skip to content

Commit

Permalink
Update dependencies and configs
Browse files Browse the repository at this point in the history
  • Loading branch information
uklotzde committed Aug 6, 2023
1 parent 6c08ab8 commit f4c419c
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jobs:

- name: Build tests
run: >-
cargo test --locked --all-targets --all-features
cargo test --locked --all-features
--no-run
- name: Run tests
run: >-
cargo test --locked --all-targets --all-features
cargo test --locked --all-features
-- --nocapture --quiet
2 changes: 1 addition & 1 deletion .justfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ clippy:

# Run unit tests
test:
RUST_BACKTRACE=1 cargo test --locked --workspace --all-targets --all-features -- --nocapture
RUST_BACKTRACE=1 cargo test --locked --all-features -- --nocapture

# Set up (and update) tooling
setup:
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ repos:
warnings,
]
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.0
rev: v3.0.1
hooks:
- id: prettier
types_or:
Expand Down
2 changes: 1 addition & 1 deletion .prettierrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ overrides:
- files:
- "**/*.md"
options:
printWidth: 80
printWidth: 100
proseWrap: always
22 changes: 10 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
[![Continuous integration](https://github.com/uklotzde/djio/actions/workflows/continuous-integration.yaml/badge.svg)](https://github.com/uklotzde/djio/actions/workflows/continuous-integration.yaml)
[![License: MPL 2.0](https://img.shields.io/badge/License-MPL_2.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0)

Application-independent interfaces for accessing hardware DJ controllers through
MIDI or HID.
Application-independent interfaces for accessing hardware DJ controllers through MIDI or HID.

## Supported Controllers

Expand Down Expand Up @@ -41,20 +40,19 @@ We have been inspired by and adopted some ideas from the following projects:

## License

Licensed under the Mozilla Public License 2.0 (MPL-2.0) (see
[MPL-2.0.txt](LICENSES/MPL-2.0.txt) or <https://www.mozilla.org/MPL/2.0/>).
Licensed under the Mozilla Public License 2.0 (MPL-2.0) (see [MPL-2.0.txt](LICENSES/MPL-2.0.txt) or
<https://www.mozilla.org/MPL/2.0/>).

Permissions of this copyleft license are conditioned on making available source
code of licensed files and modifications of those files under the same license
(or in certain cases, one of the GNU licenses). Copyright and license notices
must be preserved. Contributors provide an express grant of patent rights.
However, a larger work using the licensed work may be distributed under
different terms and without source code for files added in the larger work.
Permissions of this copyleft license are conditioned on making available source code of licensed
files and modifications of those files under the same license (or in certain cases, one of the GNU
licenses). Copyright and license notices must be preserved. Contributors provide an express grant of
patent rights. However, a larger work using the licensed work may be distributed under different
terms and without source code for files added in the larger work.

### Contribution

Any contribution intentionally submitted for inclusion in the work by you shall
be licensed under the Mozilla Public License 2.0 (MPL-2.0).
Any contribution intentionally submitted for inclusion in the work by you shall be licensed under
the Mozilla Public License 2.0 (MPL-2.0).

It is required to add the following header with the corresponding
[SPDX short identifier](https://spdx.dev/ids/) to the top of each file:
Expand Down

0 comments on commit f4c419c

Please sign in to comment.