From 5bf9ef59bf9bd5a8f9e8b250dba57ca1ae619ee0 Mon Sep 17 00:00:00 2001 From: jake Date: Fri, 10 Nov 2023 22:16:30 -0700 Subject: [PATCH] actually this shouldn't be needed --- Cargo.toml | 3 --- common/Cargo.toml | 8 -------- common/src/lib.rs | 0 maps/Cargo.toml | 1 - 4 files changed, 12 deletions(-) delete mode 100644 common/Cargo.toml delete mode 100644 common/src/lib.rs diff --git a/Cargo.toml b/Cargo.toml index 7561e6b..3e3c47b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,6 @@ edition = "2021" members = [ "entity", "maps", - "common", "networking", ] @@ -16,7 +15,6 @@ members = [ libpso = { git = "http://git.sharnoth.com/jake/libpso" } entity = { path = "./entity" } maps = { path = "./maps" } -common = { path = "./common" } networking = { path = "./networking" } async-std = { version = "1.9.0", features = ["unstable", "attributes"] } futures = "0.3.5" @@ -50,7 +48,6 @@ anyhow = { version = "1.0.68", features = ["backtrace"] } libpso = { git = "http://git.sharnoth.com/jake/libpso" } entity = { path = "./entity" } maps = { path = "./maps" } -common = { path = "./common" } networking = { path = "./networking" } async-std = { version = "1.9.0", features = ["unstable", "attributes"] } futures = "0.3.5" diff --git a/common/Cargo.toml b/common/Cargo.toml deleted file mode 100644 index 552f659..0000000 --- a/common/Cargo.toml +++ /dev/null @@ -1,8 +0,0 @@ -[package] -name = "common" -version = "0.1.0" -edition = "2021" - - -[dependencies] -derive_more = { workspace = true } \ No newline at end of file diff --git a/common/src/lib.rs b/common/src/lib.rs deleted file mode 100644 index e69de29..0000000 diff --git a/maps/Cargo.toml b/maps/Cargo.toml index cf0401e..db84b6a 100644 --- a/maps/Cargo.toml +++ b/maps/Cargo.toml @@ -4,7 +4,6 @@ version = "0.1.0" edition = "2021" [dependencies] -common = { workspace = true } byteorder = { workspace = true } serde = { workspace = true } thiserror = { workspace = true }