docs: add links
All checks were successful
ci / ci (push) Successful in 36s
ci / lint-markdown (push) Successful in 9s
ci / lint-commit (push) Successful in 11s

This commit is contained in:
Théo LUDWIG 2023-12-07 00:44:30 +01:00
parent 82face79e8
commit 551a26a6ad
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B
7 changed files with 47 additions and 9 deletions

View File

@ -15,8 +15,10 @@ jobs:
steps: steps:
- uses: "actions/checkout@v4" - uses: "actions/checkout@v4"
- uses: "dtolnay/rust-toolchain@stable" - uses: "dtolnay/rust-toolchain@stable"
with:
components: "clippy, rustfmt"
- run: "rustc --version" - run: "rustc --version"
- run: "cargo build --verbose" - run: "cargo build --verbose"
- run: "cargo test --verbose" - run: "cargo test --verbose"
- run: "cargo clippy --verbose -- -D warnings" - run: "cargo clippy --verbose -- -D warnings"

View File

@ -1,7 +1,32 @@
{ {
"config": { "config": {
"default": true, "default": true,
"MD033": false "no-inline-html": false,
/* Disables rules that may conflict with Prettier */
/* Reference: https://github.com/DavidAnson/markdownlint/blob/main/style/prettier.json */
"blanks-around-fences": false,
"blanks-around-headings": false,
"blanks-around-lists": false,
"code-fence-style": false,
"emphasis-style": false,
"heading-start-left": false,
"hr-style": false,
"line-length": false,
"list-indent": false,
"list-marker-space": false,
"no-blanks-blockquote": false,
"no-hard-tabs": false,
"no-missing-space-atx": false,
"no-missing-space-closed-atx": false,
"no-multiple-blanks": false,
"no-multiple-space-atx": false,
"no-multiple-space-blockquote": false,
"no-multiple-space-closed-atx": false,
"no-trailing-spaces": false,
"ol-prefix": false,
"strong-style": false,
"ul-indent": false
}, },
"globs": ["**/*.md"] "globs": ["**/*.md"]
} }

View File

@ -5,7 +5,7 @@
</p> </p>
<p align="center"> <p align="center">
<img src="documentation/images/logo.png" width="200px" alt="FileFormats Logo" /> <img src="documentation/images/logo.png" width="200px" alt="FileFormats Logo" />
</p> </p>
--- ---

15
documentation/Links.md Normal file
View File

@ -0,0 +1,15 @@
# Links
## File formats
- [MDN - Media type and format guide: image, audio, and video content](https://developer.mozilla.org/en-US/docs/Web/Media/Formats)
- [dav1d - AV1 cross-platform decoder, open-source, and focused on speed and correctness](https://github.com/videolan/dav1d)
## Rust Resources
- [Book to get started with the Rust programming language](https://github.com/theoludwig/rust_book)
- [Book for developing Command Line Applications in Rust](https://rust-cli.github.io/book/index.html)
- [human-panic - Panic messages for humans](https://crates.io/crates/human-panic)
- [assert_cmd - Test CLI Applications](https://crates.io/crates/assert_cmd)
- [clap - A simple to use, efficient, and full-featured Command Line Argument Parser](https://crates.io/crates/clap)
- [Rayon - Simple work-stealing parallelism for Rust](https://crates.io/crates/rayon)

View File

@ -5,7 +5,7 @@
</p> </p>
<p align="center"> <p align="center">
<img src="./images/logo.png" width="200px" alt="FileFormats Logo" /> <img src="./images/logo.png" width="200px" alt="FileFormats Logo" />
</p> </p>
--- ---

View File

@ -1,4 +0,0 @@
# Resources
- [MDN - Media type and format guide: image, audio, and video content](https://developer.mozilla.org/en-US/docs/Web/Media/Formats)
- [dav1d - AV1 cross-platform decoder, open-source, and focused on speed and correctness](https://github.com/videolan/dav1d)

View File

@ -1,4 +1,4 @@
# Summary # Summary
- [FileFormats](./README.md) - [FileFormats](./README.md)
- [Resources](./Resources.md) - [Links](./Links.md)