From 26b4619261bec0772c25cd7753e2316e32bf023b Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Wed, 24 Feb 2021 11:10:15 +0100 Subject: [PATCH] Create a disk_image sub-crate --- Cargo.toml | 3 +++ disk_image/Cargo.toml | 9 +++++++++ disk_image/src/main.rs | 3 +++ 3 files changed, 15 insertions(+) create mode 100644 disk_image/Cargo.toml create mode 100644 disk_image/src/main.rs diff --git a/Cargo.toml b/Cargo.toml index f3695103..bdb3fb34 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,4 +6,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[workspace] +members = ["disk_image"] + [dependencies] diff --git a/disk_image/Cargo.toml b/disk_image/Cargo.toml new file mode 100644 index 00000000..fb8be2c6 --- /dev/null +++ b/disk_image/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "disk_image" +version = "0.1.0" +authors = ["Philipp Oppermann "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/disk_image/src/main.rs b/disk_image/src/main.rs new file mode 100644 index 00000000..e7a11a96 --- /dev/null +++ b/disk_image/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}