summaryrefslogtreecommitdiff
path: root/add
diff options
context:
space:
mode:
Diffstat (limited to 'add')
-rw-r--r--add/Cargo.toml7
-rw-r--r--add/add-one/Cargo.toml8
-rw-r--r--add/add-one/src/lib.rs11
-rw-r--r--add/adder/Cargo.toml9
-rw-r--r--add/adder/src/main.rs6
5 files changed, 41 insertions, 0 deletions
diff --git a/add/Cargo.toml b/add/Cargo.toml
new file mode 100644
index 0000000..37b9688
--- /dev/null
+++ b/add/Cargo.toml
@@ -0,0 +1,7 @@
+[workspace]
+
+members = [
+ "adder",
+ "add-one",
+]
+
diff --git a/add/add-one/Cargo.toml b/add/add-one/Cargo.toml
new file mode 100644
index 0000000..88d65d1
--- /dev/null
+++ b/add/add-one/Cargo.toml
@@ -0,0 +1,8 @@
+[package]
+name = "add-one"
+version = "0.1.0"
+authors = ["Adam Carpenter <53hornet@gmail.com>"]
+edition = "2018"
+
+[dependencies]
+rand = "0.3.14"
diff --git a/add/add-one/src/lib.rs b/add/add-one/src/lib.rs
new file mode 100644
index 0000000..fe3583e
--- /dev/null
+++ b/add/add-one/src/lib.rs
@@ -0,0 +1,11 @@
+pub fn add_one(x: i32) -> i32 {
+ x + 1
+}
+
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ assert_eq!(2 + 2, 4);
+ }
+}
diff --git a/add/adder/Cargo.toml b/add/adder/Cargo.toml
new file mode 100644
index 0000000..1fefcc2
--- /dev/null
+++ b/add/adder/Cargo.toml
@@ -0,0 +1,9 @@
+[package]
+name = "adder"
+version = "0.1.0"
+authors = ["Adam Carpenter <53hornet@gmail.com>"]
+edition = "2018"
+
+[dependencies]
+add-one = { path = "../add-one" }
+
diff --git a/add/adder/src/main.rs b/add/adder/src/main.rs
new file mode 100644
index 0000000..7099fb8
--- /dev/null
+++ b/add/adder/src/main.rs
@@ -0,0 +1,6 @@
+use add_one;
+
+fn main() {
+ let num = 10;
+ println!("{}", add_one::add_one(num));
+}