- Rust Quick Start Guide
- Daniel Arbuckle
- 66字
- 2021-06-10 19:46:01
Dependencies on local libraries
We can also link against other libraries stored on our own systems, of course. To do this, we just have to add an entry such as this to our Cargo.toml file:
[dependencies]
example = { path = "/path/to/example" }
The path can be absolute or relative. If it's relative, it's interpreted as being relative to the directory containing our Cargo.toml file.
推薦閱讀
- 現(xiàn)代C++編程:從入門到實(shí)踐
- UML和模式應(yīng)用(原書第3版)
- 程序員面試算法寶典
- C語(yǔ)言程序設(shè)計(jì)
- MySQL從入門到精通(軟件開發(fā)視頻大講堂)
- Building Dynamics CRM 2015 Dashboards with Power BI
- BeagleBone Robotic Projects(Second Edition)
- 面向?qū)ο蟪绦蛟O(shè)計(jì)及C++(第3版)
- Flink核心技術(shù):源碼剖析與特性開發(fā)
- Using Yocto Project with BeagleBone Black
- MongoDB Cookbook
- 你必須知道的.NET(第2版)
- 零基礎(chǔ)入門學(xué)習(xí)C語(yǔ)言:帶你學(xué)C帶你飛
- Hands-On Data Visualization with Bokeh
- Delphi Cookbook