-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from nullstalgia/v0.2.0
v0.2.0!
- Loading branch information
Showing
71 changed files
with
8,164 additions
and
2,472 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# # For console-subscriber | ||
# [build] | ||
# rustflags = ["--cfg", "tokio_unstable"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
/target | ||
# Data logging files | ||
# These are put in the root instead of in the target dir in portable+debug builds | ||
# since Cargo cleans them up when I don't want it to | ||
session_logs | ||
bpm.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# https://github.com/casey/just | ||
set windows-shell := ["powershell.exe", "-NoLogo", "-Command"] | ||
|
||
alias r := run | ||
alias b := build | ||
alias br := build-release | ||
alias rr := release | ||
alias rel := release | ||
alias t := test | ||
alias ti := test-integration | ||
alias c := clippy | ||
alias d := dummy | ||
alias ws := websocket | ||
alias wsd := websocket-dummy | ||
|
||
run *ARGS: | ||
cargo run {{ARGS}} | ||
|
||
build *ARGS: | ||
cargo build {{ARGS}} | ||
|
||
release: | ||
cargo run --release --features portable | ||
|
||
build-release: | ||
cargo build --release --features portable | ||
|
||
test: | ||
cargo test | ||
|
||
test-integration *ARGS: | ||
cargo test -- --ignored --nocapture --test-threads=1 {{ARGS}} | ||
|
||
clippy: | ||
cargo clippy --all-targets --all-features | ||
|
||
# Shortcuts for subcommands | ||
|
||
ble: | ||
cargo run -- ble | ||
|
||
dummy *ARGS: | ||
cargo run -- dummy {{ARGS}} | ||
|
||
vhs: | ||
cargo run -- dummy --vhs -s 5.0 | ||
|
||
websocket *ARGS: | ||
cargo run -- ws {{ARGS}} | ||
|
||
websocket-dummy *ARGS: | ||
cargo run --example websocket_dummy -- {{ARGS}} |
Oops, something went wrong.