From ea214fe7d70a9495f0d623a5f39c2ba921de3f26 Mon Sep 17 00:00:00 2001 From: Zack Date: Mon, 19 Dec 2022 12:15:48 -0800 Subject: [PATCH] Switch back to virtual workspace. --- Cargo.toml | 24 ++++++------------------ master/Cargo.toml | 16 ++++++++++++++++ {src => master/src}/lib.rs | 0 3 files changed, 22 insertions(+), 18 deletions(-) create mode 100644 master/Cargo.toml rename {src => master/src}/lib.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index 5dc8ec0..3300876 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,8 @@ +[workspace] +members = [ + "master" +] + [workspace.package] version = "0.1.0" edition = "2021" @@ -13,21 +18,4 @@ log = "0.4.*" env_logger = "0.9.*" # Async futures-lite = "1.12.*" -async-io = "1.9.*" - -[package] -name = "physical" -description = "Physical is a library for interacting with the physical world." -version.workspace = true -edition.workspace = true -repository.workspace = true -readme.workspace = true -license.workspace = true - -[dependencies] -thiserror.workspace = true -uom.workspace = true -log.workspace = true -env_logger.workspace = true -futures-lite.workspace = true -async-io.workspace = true \ No newline at end of file +async-io = "1.9.*" \ No newline at end of file diff --git a/master/Cargo.toml b/master/Cargo.toml new file mode 100644 index 0000000..8fe260b --- /dev/null +++ b/master/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "physical" +description = "Physical is a library for interacting with the physical world." +version.workspace = true +edition.workspace = true +repository.workspace = true +readme.workspace = true +license.workspace = true + +[dependencies] +thiserror.workspace = true +uom.workspace = true +log.workspace = true +env_logger.workspace = true +futures-lite.workspace = true +async-io.workspace = true \ No newline at end of file diff --git a/src/lib.rs b/master/src/lib.rs similarity index 100% rename from src/lib.rs rename to master/src/lib.rs