3 个版本
0.1.2 | 2020年1月19日 |
---|---|
0.1.1 | 2020年1月19日 |
0.1.0 | 2020年1月19日 |
#13 in #welcome
6KB
第一个欢迎库Crates
这是一个在crates.io上发布的示例Rust库
要使用此库,您必须在 cargo.toml 的依赖项部分中添加以下行
library_crate= "0.1.2"
您的 cargo.toml 文件应如下所示
[package]
name = "library_crate"
version = "0.1.2"
authors = ["SyedHussainAhmed121 <[email protected]>"]
edition = "2018"
[dependencies]
library_crate = "0.1.2"
在 src/main.rs
中您可以这样使用
use library_crate;
fn main() {
println!("Hello, world!");
library_crate::welcome();
}
以下也将有效
use library_crate::welcome;
fn main() {
println!("Hello, world!");
welcome();
}
现在使用 cargo run
来获取结果