From 3268260af4c6c26d861e2939202fb2da81dad2dc Mon Sep 17 00:00:00 2001 From: Philip Tricca Date: Thu, 20 Mar 2025 16:18:14 -0700 Subject: [PATCH] Move license from workspace to workspace.package. For packages to inherit a license defined in the workspace it must be in `workspace.package`. --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9431426..a95e4f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,9 @@ [workspace] members = ["fwidgen", "hubedit", "hubtools"] resolver = "2" -license = "MPL-2.0" [workspace.dependencies] hubtools.path = "hubtools" + +[workspace.package] +license = "MPL-2.0"