File tree 1 file changed +8
-5
lines changed
1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change
1
+ bin := file_name (justfile_directory ())
1
2
completions_dir := env_var (" FDOTDIR" ) / " completions/muxi.fish"
2
3
3
4
# list recipes
@@ -12,7 +13,7 @@ default:
12
13
@ install :
13
14
cargo install --path .
14
15
15
- # Publish to creates .io
16
+ # Publish to crates .io
16
17
@ publish : test
17
18
cargo audit
18
19
git push
@@ -39,14 +40,16 @@ open:
39
40
@ console :
40
41
evcxr
41
42
43
+ # Upgrade dependencies
42
44
upgrade :
43
45
cargo upgrade --incompatible allow
44
46
45
47
# Profile with samply
46
- profile args = " " :
48
+ profile * args :
47
49
cargo build --profile profiling
48
- samply record target/ profiling/ muxi {{ args }}
50
+ samply record target/ profiling/ {{ bin }} {{ args }}
49
51
50
- debug args = " ":
52
+ # Debug with rust-lldb
53
+ debug * args :
51
54
cargo build
52
- rust-lldb -Q -- target/ debug/ muxi {{ args }}
55
+ rust-lldb -Q -- target/ debug/ {{ bin }} {{ args }}
You can’t perform that action at this time.
0 commit comments