- 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.
推薦閱讀
- FuelPHP Application Development Blueprints
- Android和PHP開發最佳實踐(第2版)
- Learning RabbitMQ
- Blender 3D Incredible Machines
- MATLAB實用教程
- Mastering AndEngine Game Development
- R的極客理想:工具篇
- 編譯系統透視:圖解編譯原理
- Learning Hunk
- Java EE 8 Application Development
- Spring MVC+MyBatis開發從入門到項目實踐(超值版)
- 計算機應用基礎項目化教程
- 3ds Max印象 電視欄目包裝動畫與特效制作
- Go語言從入門到精通
- Android Studio開發實戰:從零基礎到App上線 (移動開發叢書)