From: Carsten Schoenert <c.schoenert@t-online.de>
Date: Wed, 17 Sep 2025 10:05:19 +0200
Subject: Cargo.toml: Drop feature 'generate-import-lib'

The optional feature 'generate-import-lib' for the pyo3 library is mainly
intended to generate import libraries for Python DLL for MinGW-w64 and
MSVC (cross-)compile targets.
As this option is currently also an experiemntal feature and only used
in Windows we patch this feature usage out.

See also the PyO3 user guide, section Features for extension module authors:
https://pyo3.rs/v0.23.3/features.html#generate-import-lib

Forwarded: Not-Needed
---
 Cargo.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Cargo.toml b/Cargo.toml
index 85f365a..31f76ae 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -15,5 +15,5 @@ crate-type = ["cdylib"]
 
 [dependencies]
 ammonia = "4.1.1"
-pyo3 = { version = "0.25.1", features = ["abi3-py38", "generate-import-lib"] }
+pyo3 = { version = "0.25.1", features = ["abi3-py38", ] }
 ouroboros = "0.18"
