From c6dbc3d00f637ab53ffe586a2d02b3136664ce86 Mon Sep 17 00:00:00 2001 From: Edvin Bryntesson Date: Sat, 7 Sep 2024 16:03:11 +0200 Subject: [PATCH] move around dependencies to match project spec --- pumpkin-inventory/Cargo.toml | 7 ++++--- pumpkin/Cargo.toml | 3 ++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/pumpkin-inventory/Cargo.toml b/pumpkin-inventory/Cargo.toml index e30cbb273..3b6c8c972 100644 --- a/pumpkin-inventory/Cargo.toml +++ b/pumpkin-inventory/Cargo.toml @@ -4,9 +4,10 @@ version.workspace = true edition.workspace = true [dependencies] +# For items +pumpkin-world = { path = "../pumpkin-world"} + num-traits = "0.2" num-derive = "0.4" thiserror = "1.0.63" -itertools = "0.13.0" -# For items -pumpkin-world = { path = "../pumpkin-world"} \ No newline at end of file +itertools = "0.13.0" \ No newline at end of file diff --git a/pumpkin/Cargo.toml b/pumpkin/Cargo.toml index edb2209a7..178300ceb 100644 --- a/pumpkin/Cargo.toml +++ b/pumpkin/Cargo.toml @@ -18,6 +18,8 @@ pumpkin-entity = { path = "../pumpkin-entity"} pumpkin-protocol = { path = "../pumpkin-protocol"} pumpkin-registry = { path = "../pumpkin-registry"} +itertools = "0.13.0" + # config serde.workspace = true serde_json = "1.0" @@ -62,4 +64,3 @@ mio = { version = "1.0.2", features = ["os-poll", "net"]} uuid.workspace = true tokio.workspace = true rayon.workspace = true -itertools = "0.13.0"