show icon indicating copy to clipboard operation
show copied to clipboard

🍿 Show notes, code, and future topic ideas for "Hello Rust!", a YouTube channel about the Rust programming language.

Results 48 show issues
Sort by recently updated
recently updated
newest added

Bumps [thread_local](https://github.com/Amanieu/thread_local-rs) from 1.0.1 to 1.1.4. Commits 4a54e57 Bump version to 1.1.4 ebf8b45 Merge pull request #34 from ibraheemdev/patch-1 3d69afa Fix memory ordering in RawIter::next c7d8dcd Bump version to 1.1.3...

dependencies

Bumps [smallvec](https://github.com/servo/rust-smallvec) from 0.6.13 to 0.6.14. Release notes Sourced from smallvec's releases. v0.6.14 Fix a possible buffer overflow in insert_many (#252, #254). Commits 5757ac5 Fix potential buffer overflow in insert_many...

dependencies

Bumps [futures-task](https://github.com/rust-lang/futures-rs) from 0.3.5 to 0.3.21. Release notes Sourced from futures-task's releases. 0.3.21 Fix potential data race in FlattenUnordered that introduced in 0.3.20 (#2566) 0.3.20 Fix stacked borrows violations when...

dependencies

Bumps [futures-util](https://github.com/rust-lang/futures-rs) from 0.3.5 to 0.3.21. Release notes Sourced from futures-util's releases. 0.3.21 Fix potential data race in FlattenUnordered that introduced in 0.3.20 (#2566) 0.3.20 Fix stacked borrows violations when...

dependencies

Bumps [net2](https://github.com/deprecrated/net2-rs) from 0.2.34 to 0.2.37. Commits a183475 Release v0.2.37 6081dff haiku: Fix sockaddr_in/sockaddr_in6; Solves #108 71708b7 Release v0.2.36 49b43f2 Do not assume memory layout of std::net::SocketAddr 77a6eb4 Release v0.2.35...

dependencies

Bumps [miow](https://github.com/yoshuawuyts/miow) from 0.2.1 to 0.2.2. Commits 6fd7b9c Bump version to 0.2.2 550efc2 Merge branch 'fix-sockaddr-convertion-v0.2.x' into 0.2.x ca8db53 Stop using from_ne_bytes to be compatible with Rust < 1.32.0 3e217e3...

dependencies

Bumps [im](https://github.com/bodil/im-rs) from 12.0.0 to 15.1.0. Release notes Sourced from im's releases. 12.3.1 Changed Unsafe chunks have been separated out into the sized-chunks crate, which is now a dependency of...

dependencies

Bumps [regex](https://github.com/rust-lang/regex) from 1.1.6 to 1.5.6. Changelog Sourced from regex's changelog. 1.5.6 (2022-05-20) This release includes a few bug fixes, including a bug that produced incorrect matches when a non-greedy...

dependencies

### What? Describe how to implement recursive data structures such as: - linked lists (stacks, queues) - trees - graphs Show ready to use std and crates: - [linked list](https://doc.rust-lang.org/std/collections/struct.LinkedList.html)...

### What? Do a workshop about refactoring Rust code. ### Why? A thing that every developer does on a regular basis, is refactoring. In Rust, this is particularly pleasant -...

level-intermediate
topic-patterns-and-idioms