- 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.
推薦閱讀
- 信息系統(tǒng)與數(shù)據(jù)科學(xué)
- 計(jì)算機(jī)信息技術(shù)基礎(chǔ)實(shí)驗(yàn)與習(xí)題
- MySQL從入門(mén)到精通(第3版)
- 大數(shù)據(jù)算法
- R數(shù)據(jù)科學(xué)實(shí)戰(zhàn):工具詳解與案例分析(鮮讀版)
- UDK iOS Game Development Beginner's Guide
- 大數(shù)據(jù):從概念到運(yùn)營(yíng)
- 圖數(shù)據(jù)實(shí)戰(zhàn):用圖思維和圖技術(shù)解決復(fù)雜問(wèn)題
- 大數(shù)據(jù)精準(zhǔn)挖掘
- Power BI智能數(shù)據(jù)分析與可視化從入門(mén)到精通
- 活用數(shù)據(jù):驅(qū)動(dòng)業(yè)務(wù)的數(shù)據(jù)分析實(shí)戰(zhàn)
- R Machine Learning Essentials
- Unity Game Development Blueprints
- Cognitive Computing with IBM Watson
- Oracle 內(nèi)核技術(shù)揭密