From e075010fbd5a4baaf17fdc226c46f9fb19d12cd9 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Fri, 1 Aug 2025 17:38:35 +0100 Subject: [PATCH] Deduplicate Cargo package fields --- Cargo.toml | 17 ++++++++++++----- ffi/Cargo.toml | 9 +++++---- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 378928f..de6cc35 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "loot-condition-interpreter" -version = "5.3.2" -authors = ["Oliver Hamlet "] description = "Parse and evaluate LOOT metadata condition strings." -repository = "https://github.com/loot/loot-condition-interpreter.git" -license = "MIT" -edition = "2021" +version.workspace = true +authors.workspace = true +repository.workspace = true +license.workspace = true +edition.workspace = true [dependencies] crc32fast = "1.5.0" @@ -25,3 +25,10 @@ harness = false [workspace] members = ["ffi"] + +[workspace.package] +version = "5.3.2" +authors = ["Oliver Hamlet "] +repository = "https://github.com/loot/loot-condition-interpreter.git" +license = "MIT" +edition = "2021" diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 72a1dee..31e68d5 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -1,9 +1,10 @@ [package] name = "loot-condition-interpreter-ffi" -version = "5.3.2" -authors = ["Oliver Hamlet "] -license = "MIT" -edition = "2021" +version.workspace = true +authors.workspace = true +repository.workspace = true +license.workspace = true +edition.workspace = true [dependencies] loot-condition-interpreter = { path = ".." }