1 个不稳定版本
0.1.0 | 2020年1月19日 |
---|
#72 在 #following
3MB
首次欢迎
这是一个在 crates.io 上发布的演示 Rust 库
要使用此库,您需要在 cargo.toml 的依赖项部分添加以下行
location= "0.1.0"
您的 cargo.toml 文件应如下所示
[package]
name = "location"
version = "0.1.0"
authors = ["wajid ali"]
edition = "2020"
GitHub = https://github.com/scorpasdzx/location.git
[dependencies]
location = "0.1.0"
在 src/main.rs
中可以这样使用
use location;
fn main() {
location::ques3::location();
}
以下也将有效
use location::ques3::location;
fn main() {
location();
}
现在可以使用 cargo run
获取结果