diff --git a/Cargo.lock b/Cargo.lock index b1c0c50..9ac238f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1829,7 +1829,6 @@ name = "iced_layershell_macros" version = "0.8.0" dependencies = [ "darling", - "iced_layershell", "manyhow", "proc-macro2", "quote", diff --git a/iced_layershell_macros/tests/macro_test.rs b/iced_layershell/tests/test_macro.rs similarity index 80% rename from iced_layershell_macros/tests/macro_test.rs rename to iced_layershell/tests/test_macro.rs index 037be1e..7aae4d3 100644 --- a/iced_layershell_macros/tests/macro_test.rs +++ b/iced_layershell/tests/test_macro.rs @@ -1,4 +1,4 @@ -use iced_layershell_macros::to_layer_message; +use iced_layershell::to_layer_message; #[test] fn test_macro() { diff --git a/iced_layershell_macros/Cargo.toml b/iced_layershell_macros/Cargo.toml index 15eb68d..f82a9b3 100644 --- a/iced_layershell_macros/Cargo.toml +++ b/iced_layershell_macros/Cargo.toml @@ -23,6 +23,3 @@ manyhow = { version = "0.11.4", features = ["darling"] } proc-macro2 = "1.0.86" quote = "1.0.37" syn = { version = "2.0.77", features = ["full"] } - -[dev-dependencies] -iced_layershell.workspace = true