fixes for workspace split
This commit is contained in:
parent
d75d5585f5
commit
978d0d7791
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
@ -41,16 +41,16 @@ jobs:
|
||||
run: cargo test --all-features --all-targets --workspace
|
||||
- name: Check fuzz tests
|
||||
run: cd fuzz && cargo check --workspace
|
||||
- name: Check main crate formatting
|
||||
- name: Check main workspace formatting
|
||||
if: matrix.rust == 'stable'
|
||||
run: cargo fmt -- --check
|
||||
- name: Check fuzz crate formatting
|
||||
run: cargo fmt --all --check
|
||||
- name: Check fuzz worspace formatting
|
||||
if: matrix.rust == 'stable'
|
||||
run: cd fuzz && cargo fmt -- --check --all
|
||||
- name: Clippy on main crate
|
||||
run: cd fuzz && cargo fmt --all --check
|
||||
- name: Clippy on main workspace
|
||||
if: matrix.rust == 'stable'
|
||||
run: cargo clippy --workspace -- -D warnings
|
||||
- name: Clippy on fuzz crate
|
||||
- name: Clippy on fuzz workspace
|
||||
if: matrix.rust == 'stable'
|
||||
run: cd fuzz && cargo clippy --workspace -- -D warnings
|
||||
|
||||
|
@ -64,7 +64,7 @@ Try the `mp4` example. It streams from an RTSP server to a `.mp4` file until
|
||||
you hit ctrl-C.
|
||||
|
||||
```shell
|
||||
$ cargo run --example client mp4 --url rtsp://ip.address.goes.here/ --username admin --password test out.mp4
|
||||
$ cargo run --package client mp4 --url rtsp://ip.address.goes.here/ --username admin --password test out.mp4
|
||||
...
|
||||
^C
|
||||
```
|
||||
@ -72,7 +72,7 @@ $ cargo run --example client mp4 --url rtsp://ip.address.goes.here/ --username a
|
||||
## Example client
|
||||
|
||||
```shell
|
||||
$ cargo run --example client <CMD>
|
||||
$ cargo run --package client <CMD>
|
||||
```
|
||||
|
||||
Where CMD:
|
||||
|
Loading…
Reference in New Issue
Block a user