- 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.
推薦閱讀
- Learn ECMAScript(Second Edition)
- The Complete Rust Programming Reference Guide
- Java應(yīng)用與實(shí)戰(zhàn)
- C#完全自學(xué)教程
- Hands-On Microservices with Kotlin
- 小學(xué)生C++創(chuàng)意編程(視頻教學(xué)版)
- 組態(tài)軟件技術(shù)與應(yīng)用
- 領(lǐng)域驅(qū)動(dòng)設(shè)計(jì):軟件核心復(fù)雜性應(yīng)對(duì)之道(修訂版)
- C++從入門到精通(第5版)
- Test-Driven Machine Learning
- QPanda量子計(jì)算編程
- JavaWeb從入門到精通(視頻實(shí)戰(zhàn)版)
- Android應(yīng)用程序設(shè)計(jì)
- Learning ECMAScript 6
- Mastering Clojure