aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock11
-rw-r--r--Cargo.toml3
-rw-r--r--hbak/Cargo.toml8
-rw-r--r--hbak/src/main.rs3
-rw-r--r--hbakd/Cargo.toml8
-rw-r--r--hbakd/src/main.rs3
6 files changed, 35 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
new file mode 100644
index 0000000..f59d8c2
--- /dev/null
+++ b/Cargo.lock
@@ -0,0 +1,11 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 3
+
+[[package]]
+name = "hbak"
+version = "0.1.0"
+
+[[package]]
+name = "hbakd"
+version = "0.1.0"
diff --git a/Cargo.toml b/Cargo.toml
index c4b464f..3982b32 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,2 +1,3 @@
[workspace]
-members = []
+members = ["hbak", "hbakd"]
+resolver = "2"
diff --git a/hbak/Cargo.toml b/hbak/Cargo.toml
new file mode 100644
index 0000000..e2f7360
--- /dev/null
+++ b/hbak/Cargo.toml
@@ -0,0 +1,8 @@
+[package]
+name = "hbak"
+version = "0.1.0"
+edition = "2021"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
diff --git a/hbak/src/main.rs b/hbak/src/main.rs
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/hbak/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}
diff --git a/hbakd/Cargo.toml b/hbakd/Cargo.toml
new file mode 100644
index 0000000..c00d1db
--- /dev/null
+++ b/hbakd/Cargo.toml
@@ -0,0 +1,8 @@
+[package]
+name = "hbakd"
+version = "0.1.0"
+edition = "2021"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
diff --git a/hbakd/src/main.rs b/hbakd/src/main.rs
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/hbakd/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}