Chapter 15 - Packages, Crates, Modules and Paths - Rust Crash Course 🦀

Part of the Rust Crash Course: Welcome to the Rust Crash Course In this course, we will be learning Rust from scratch. This course is very fast paced and designed for programmers who already have some experience with another programming language such as Dart or JavaScript or Swift. We will talk about variables, constants, ownership, functions, structures, enumerations, collections such as tuples, vectors, hash-maps and iterators, optionals, error handling, lifetime specifiers, traits, pointers, generics, packages, crates, modules and paths, asynchronous programming and we will also create 2 sample applications using Rust to put all these concepts to use! PCMP (Packages, Crates, Modules and Paths) are one of the most important parts of learning about code reusability in Rust. In this chapter we will create a package with 1 library crate and 1 binary crate and link them together. Timestamps: 00:00 - Packa
Back to Top