Deduplicate Cargo package fields

This commit is contained in:
Oliver Hamlet
2025-08-01 18:07:33 +01:00
parent a2d90d781a
commit e075010fbd
2 changed files with 17 additions and 9 deletions
+12 -5
View File
@@ -1,11 +1,11 @@
[package]
name = "loot-condition-interpreter"
version = "5.3.2"
authors = ["Oliver Hamlet <oliver@ortham.net>"]
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 <oliver@ortham.net>"]
repository = "https://github.com/loot/loot-condition-interpreter.git"
license = "MIT"
edition = "2021"
+5 -4
View File
@@ -1,9 +1,10 @@
[package]
name = "loot-condition-interpreter-ffi"
version = "5.3.2"
authors = ["Oliver Hamlet <oliver@ortham.net>"]
license = "MIT"
edition = "2021"
version.workspace = true
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
[dependencies]
loot-condition-interpreter = { path = ".." }