- Hands-On Data Structures and Algorithms with Rust
- Claus Matzinger
- 135字
- 2021-07-02 14:11:48
Summary
cargo is Rust's package manager and build tool that is configurable with a manifest called Cargo.toml. The file is used by cargo to build the desired binary with the specified dependencies, profiles, workspaces, and package metadata. During this process, the package state is saved in a file called Cargo.lock. Thanks to its LLVM frontend, Rust compiles to native code on various platforms including the web (using Wasm)—thus keeping a high degree of interoperabilty. Successfully-built packages can be published on a repository called crates.io, a website that is a central hub for available Rust libraries and binaries.
Before we dive into data structures (starting with lists), the next chapter will introduce the ways Rust stores variables and data in memory, whether to copy or to clone, and what sized and unsized types are.
- 同步:秩序如何從混沌中涌現
- 達夢數據庫編程指南
- 劍破冰山:Oracle開發藝術
- SQL Server 2012數據庫技術與應用(微課版)
- 虛擬化與云計算
- Game Development with Swift
- Oracle高性能SQL引擎剖析:SQL優化與調優機制詳解
- Doris實時數倉實戰
- SIEMENS數控技術應用工程師:SINUMERIK 840D-810D數控系統功能應用與維修調整教程
- MySQL數據庫實用教程
- AndEngine for Android Game Development Cookbook
- 領域驅動設計精粹
- ORACLE 11g權威指南
- 數據會說話:活用數據表達、說服與決策
- Redis 6開發與實戰