Previously, the license field in rust/Cargo.toml was wrongly set to
"LGPL-2.1-only". This commit changes it to the correct
"LGPL-2.1-or-later", which conforms to the license preamble in the
source files.
---
rust/Cargo.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index 9ac6e53..01555de 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -25,7 +25,7 @@ version = "0.1.0"
edition = "2021"
rust-version = "1.69"
description = "Rust bindings for libnbd, a client library for controlling block
devices over a network."
-license = "LGPL-2.1-only"
+license = "LGPL-2.1-or-later"
keywords = ["libnbd", "block-device", "network"]
categories = ["api-bindings", "emulators",
"virtualization"]
--
2.41.0