- Hands-On Data Structures and Algorithms with Rust
- Claus Matzinger
- 92字
- 2021-07-02 14:11:45
The manifest – Cargo.toml
The Cargo.toml file follows—as the name suggests—the TOML structure. It's handwritten and contains metadata about the project as well as dependencies, links to other resources, build profiles, examples, and much more. Most of them are optional and have reasonable defaults. In fact, the cargo new command generates the minimal version of a manifest:
[package]
name = "ch2"
version = "0.1.0"
authors = ["Claus Matzinger"]
edition = "2018"
[dependencies]
There are many more sections and properties, and we will present a few important ones here.
推薦閱讀
- MySQL高可用解決方案:從主從復制到InnoDB Cluster架構
- 達夢數據庫編程指南
- Java Data Science Cookbook
- 數據結構與算法(C語言版)
- UDK iOS Game Development Beginner's Guide
- Ceph源碼分析
- 數亦有道:Python數據科學指南
- 一個64位操作系統的設計與實現
- Lego Mindstorms EV3 Essentials
- Flutter Projects
- 一本書講透Elasticsearch:原理、進階與工程實踐
- 計算機組裝與維護(微課版)
- 二進制分析實戰
- Python數據分析從小白到專家
- Expert Python Programming(Third Edition)