Skip to content

Commit

Permalink
Move / rename essential crates
Browse files Browse the repository at this point in the history
  • Loading branch information
john-cd committed Jan 15, 2024
1 parent 4de5df3 commit e5c495e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@
- [HashMap](std/hashmaps.md)
- [Strings](std/strings.md)
- [Smart pointers](std/smart_pointers.md)
- [Regex](std/regex.md)
- [Serialization (Serde)](std/serialization.md)
- [Key crates](std/key_crates.md)
- [Regex](std/regex.md)
- [Serialization (Serde)](std/serialization.md)

- [Cross-cutting concerns](concerns/cross_cutting_concerns.md)
- [Automatic derivation](concerns/derive.md)
Expand Down Expand Up @@ -97,7 +98,6 @@
- [Links](links/links.md)
- [Example code](links/example_code.md)
- [Cheat sheets](links/rust_cheatsheets.md)
- [Essential crates](links/essential_crates.md)
- [Blogs](links/blogs.md)
- [Books](links/books.md)
- [Companies](links/companies.md)
Expand Down
2 changes: 1 addition & 1 deletion src/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ This book is in its **early days** - feel free to submit an issue or a pull requ

Contributions, from small edits to whole chapters, are most welcome. Draft pages are kept in [this folder][drafts]. An informal (and very long) list of topics of interest is kept in [TODO][todo]. Embedded examples should be ideally _runnable_ on the [Rust playground][rust-playground]⮳ or at least directly copy-pasteable into Rust code. Please read [CONTRIBUTING.md][contributing] for more details.

Its long-term goal is the coverage of the 'most commonly used' Rust crates, as defined by [blessed.rs][blessed-rs]⮳, the most downloaded libraries in [crates.io][crates-io]⮳, and 'high quality crates' per [lib.rs][lib-rs][statistics][lib-rs-stats]⮳. Review [essential crates](links/essential_crates.md) for topic ideas.
Its long-term goal is the coverage of the 'most commonly used' Rust crates, as defined by [blessed.rs][blessed-rs]⮳, the most downloaded libraries in [crates.io][crates-io]⮳, and 'high quality crates' per [lib.rs][lib-rs][statistics][lib-rs-stats]⮳. Review [key crates](std/key_crates.md) for topic ideas.

This site is not affiliated with the [Rust Foundation][rust-foundation]⮳.

Expand Down
9 changes: 7 additions & 2 deletions src/links/essential_crates.md → src/std/key_crates.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
# Essential crates
# Key crates

Consult the following web sites for crate recommendations:
Consult the following sites for crate recommendations:

- [Blessed.rs][blessed-rs]
- [lib.rs][lib-rs]
- [lib.rs stats][lib-rs-stats]
- The Rust community’s official crate registry: [crates.io][crates-io]
- [Crates.io's most (recent) downloads][most-recent-downloads]

## In this section

- [Regex](regex.md)
- [Serialization (Serde)](serialization.md)

## Older resources

- [Rust starter pack][rust-starter-pack]
Expand Down

0 comments on commit e5c495e

Please sign in to comment.