From 6e8700a0c3ec83ccb8d1f846e6b13ba188a901f4 Mon Sep 17 00:00:00 2001 From: fluo10 Date: Thu, 12 Jun 2025 08:26:13 +0900 Subject: [PATCH] Add test feature --- lazy-supplements-desktop/Cargo.toml | 4 ++++ lazy-supplements-mobile/Cargo.toml | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/lazy-supplements-desktop/Cargo.toml b/lazy-supplements-desktop/Cargo.toml index a7bfaaa..69842f4 100644 --- a/lazy-supplements-desktop/Cargo.toml +++ b/lazy-supplements-desktop/Cargo.toml @@ -6,6 +6,10 @@ description.workspace = true license.workspace = true repository.workspace = true +[features] +default = [] +test = ["lazy-supplements-core/test"] + [dependencies] clap = { version = "4.5.38", features = ["derive"] } dirs = "6.0.0" diff --git a/lazy-supplements-mobile/Cargo.toml b/lazy-supplements-mobile/Cargo.toml index 5b6953b..02de885 100644 --- a/lazy-supplements-mobile/Cargo.toml +++ b/lazy-supplements-mobile/Cargo.toml @@ -6,4 +6,9 @@ description.workspace = true license.workspace = true repository.workspace = true +[features] +default = [] +test = ["lazy-supplements-core/test"] + [dependencies] +lazy-supplements-core.workspace = true \ No newline at end of file