- Rust Quick Start Guide
- Daniel Arbuckle
- 85字
- 2021-06-10 19:46:00
Dependencies on Git repositories
Depending on a library stored in the Git version control system, either locally or remotely, is also easy. The linking code is slightly different, but it looks like this:
[dependencies]
thing = { git = "https://github.com/example/thing" }
We tell Rust where to find the repository, and it knows how to check it out, compile it, and link it with our program. The repository location doesn't have to be a URL; it can be any repository location that the git command recognizes.
推薦閱讀
- INSTANT OpenCV Starter
- Java 9 Concurrency Cookbook(Second Edition)
- Instant Zepto.js
- C/C++算法從菜鳥(niǎo)到達(dá)人
- Python網(wǎng)絡(luò)爬蟲(chóng)從入門(mén)到實(shí)踐(第2版)
- Production Ready OpenStack:Recipes for Successful Environments
- INSTANT Mercurial SCM Essentials How-to
- 網(wǎng)店設(shè)計(jì)看這本就夠了
- 差分進(jìn)化算法及其高維多目標(biāo)優(yōu)化應(yīng)用
- 用Flutter極速構(gòu)建原生應(yīng)用
- Learning ArcGIS for Desktop
- Java網(wǎng)絡(luò)編程核心技術(shù)詳解(視頻微課版)
- 深入理解C指針
- 深入實(shí)踐DDD:以DSL驅(qū)動(dòng)復(fù)雜軟件開(kāi)發(fā)
- KnockoutJS Blueprints