- 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.
推薦閱讀
- 輕松學大數(shù)據(jù)挖掘:算法、場景與數(shù)據(jù)產(chǎn)品
- Spark快速大數(shù)據(jù)分析(第2版)
- 數(shù)據(jù)化網(wǎng)站運營深度剖析
- Spark大數(shù)據(jù)編程實用教程
- 白話大數(shù)據(jù)與機器學習
- 深入淺出Greenplum分布式數(shù)據(jù)庫:原理、架構(gòu)和代碼分析
- TextMate How-to
- Oracle數(shù)據(jù)庫管理、開發(fā)與實踐
- 二進制分析實戰(zhàn)
- 深入理解InfluxDB:時序數(shù)據(jù)庫詳解與實踐
- Mastering ROS for Robotics Programming(Second Edition)
- Node.js High Performance
- Spring Boot 2.0 Cookbook(Second Edition)
- Hands-On Deep Learning for Games
- Access 2016數(shù)據(jù)庫應(yīng)用基礎(chǔ)