From cdcc934e629f0324be57a2db0ce8d91d9a45942d Mon Sep 17 00:00:00 2001 From: Echo Date: Wed, 23 Jul 2025 17:51:21 -0600 Subject: [PATCH] Remove references to non-existent basic_math_types dependency - Remove basic_math_types from multiply tool Cargo.toml - Remove basic_math_types from subtract tool Cargo.toml - Fixes cargo fmt --all -- --check failure --- Cargo.toml | 2 +- tools/basic_math/multiply/Cargo.toml | 1 - tools/basic_math/subtract/Cargo.toml | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0f993e0..29d7d79 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,7 @@ resolver = "2" # Include all tool directories as workspace members + members = [ "tools/basic_math/add", "tools/basic_math/distance-two-d", @@ -17,7 +18,6 @@ members = [ "tools/basic_math/sqrt", "tools/basic_math/square", "tools/basic_math/subtract", - "shared/basic_math_types", "tools/datetime/current_datetime", "tools/encoding/base64_decoder", "tools/encoding/base64_encoder", diff --git a/tools/basic_math/multiply/Cargo.toml b/tools/basic_math/multiply/Cargo.toml index c05e233..cc65431 100644 --- a/tools/basic_math/multiply/Cargo.toml +++ b/tools/basic_math/multiply/Cargo.toml @@ -16,5 +16,4 @@ ftl-sdk = { version = "0.2.3", features = ["macros"], optional = true } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" schemars = "0.8" -basic_math_types = { path = "../../../shared/basic_math_types" } spin-sdk = { version = "4.0", optional = true } \ No newline at end of file diff --git a/tools/basic_math/subtract/Cargo.toml b/tools/basic_math/subtract/Cargo.toml index ada6b55..ad87887 100644 --- a/tools/basic_math/subtract/Cargo.toml +++ b/tools/basic_math/subtract/Cargo.toml @@ -16,5 +16,4 @@ ftl-sdk = { version = "0.2.3", features = ["macros"], optional = true } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" schemars = "0.8" -basic_math_types = { path = "../../../shared/basic_math_types" } spin-sdk = { version = "4.0", optional = true }