|
2 | 2 |
|
3 | 3 | all: |
4 | 4 | @echo "Usage:" |
5 | | - @echo "fmt - run the rust formatter" |
6 | | - @echo "sort - sort TOML dependencies" |
7 | | - @echo "lint - combine fmt+sort" |
8 | | - @echo "check - shallow check of rust code (pre-compile)" |
9 | | - @echo "clippy - run clippy checks" |
10 | | - @echo "doc - doc checks" |
11 | | - @echo "hack - test feature matrix compatibility" |
12 | | - @echo "test - run all unit and doc tests" |
13 | | - @echo "qa - combine lint+check+clippy+doc+hack+test" |
14 | | - @echo "detect-unused-deps - detect unused deps for removal" |
15 | | - @echo "hello-axum - run hello-world example using the Axum framework" |
16 | | - @echo "test-suite-axum - run test-suite example runner using the Axum framework" |
17 | | - @echo "hello-rocket - run hello-world example using the Rocket framework" |
| 5 | + @echo "fmt - run the rust formatter" |
| 6 | + @echo "sort - sort TOML dependencies" |
| 7 | + @echo "lint - combine fmt+sort" |
| 8 | + @echo "check - shallow check of rust code (pre-compile)" |
| 9 | + @echo "clippy - run clippy checks" |
| 10 | + @echo "doc - doc checks" |
| 11 | + @echo "hack - test feature matrix compatibility" |
| 12 | + @echo "test - run all unit and doc tests" |
| 13 | + @echo "qa - combine lint+check+clippy+doc+hack+test" |
| 14 | + @echo "detect-unused-deps - detect unused deps for removal" |
| 15 | + @echo "hello-axum - run hello-world example using the Axum framework" |
| 16 | + @echo "activity-feed-axum - run activity-feed example using the Axum framework" |
| 17 | + @echo "test-suite-axum - run test-suite example runner using the Axum framework" |
| 18 | + @echo "hello-rocket - run hello-world example using the Rocket framework" |
| 19 | + @echo "hello-channel-rocket - run hello-world w/ a channel example using the Rocket framework" |
18 | 20 | .PHONY: |
19 | 21 |
|
20 | 22 | fmt: |
@@ -55,8 +57,14 @@ detect-unused-deps: |
55 | 57 | hello-axum: |
56 | 58 | cargo run --example axum-hello --features axum,tracing |
57 | 59 |
|
| 60 | +activity-feed-axum: |
| 61 | + cargo run --example axum-activity-feed --features axum,tracing |
| 62 | + |
58 | 63 | test-suite-axum: |
59 | 64 | cargo run --example axum-test-suite --features axum,tracing |
60 | 65 |
|
61 | 66 | hello-rocket: |
62 | 67 | cargo run --example rocket-hello --features rocket |
| 68 | + |
| 69 | +hello-channel-rocket: |
| 70 | + cargo run --example rocket-hello-channel --features rocket |
0 commit comments