docs: add links
This commit is contained in:
parent
82face79e8
commit
551a26a6ad
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -15,8 +15,10 @@ jobs:
|
||||
steps:
|
||||
- uses: "actions/checkout@v4"
|
||||
- uses: "dtolnay/rust-toolchain@stable"
|
||||
|
||||
with:
|
||||
components: "clippy, rustfmt"
|
||||
- run: "rustc --version"
|
||||
|
||||
- run: "cargo build --verbose"
|
||||
- run: "cargo test --verbose"
|
||||
- run: "cargo clippy --verbose -- -D warnings"
|
||||
|
@ -1,7 +1,32 @@
|
||||
{
|
||||
"config": {
|
||||
"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"]
|
||||
}
|
||||
|
@ -5,7 +5,7 @@
|
||||
</p>
|
||||
|
||||
<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>
|
||||
|
||||
---
|
||||
|
15
documentation/Links.md
Normal file
15
documentation/Links.md
Normal 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)
|
@ -5,7 +5,7 @@
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img src="./images/logo.png" width="200px" alt="FileFormats Logo" />
|
||||
<img src="./images/logo.png" width="200px" alt="FileFormats Logo" />
|
||||
</p>
|
||||
|
||||
---
|
||||
|
@ -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)
|
@ -1,4 +1,4 @@
|
||||
# Summary
|
||||
|
||||
- [FileFormats](./README.md)
|
||||
- [Resources](./Resources.md)
|
||||
- [Links](./Links.md)
|
||||
|
Loading…
Reference in New Issue
Block a user