"首次提交"
This commit is contained in:
1
workspace_learn/add/adder/.gitignore
vendored
Executable file
1
workspace_learn/add/adder/.gitignore
vendored
Executable file
@ -0,0 +1 @@
|
||||
/target
|
9
workspace_learn/add/adder/Cargo.toml
Executable file
9
workspace_learn/add/adder/Cargo.toml
Executable file
@ -0,0 +1,9 @@
|
||||
[package]
|
||||
name = "adder"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
add-one = { path = "../add-one" }
|
10
workspace_learn/add/adder/src/main.rs
Executable file
10
workspace_learn/add/adder/src/main.rs
Executable file
@ -0,0 +1,10 @@
|
||||
use add_one;
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
add_one::add(1, 2);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn it_works_add_one() {
|
||||
assert_eq!(add_one::add(1, 2), 3);
|
||||
}
|
Reference in New Issue
Block a user