From 880e5aef144d628f0d4efcb2ded5d60c92fc2fa8 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Fri, 29 Apr 2022 05:31:08 -0400 Subject: [PATCH] `py`: automatically generate `python3.dll` import libs on Windows targets. see https://github.com/PyO3/pyo3/issues/2231 for more info --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 2b5243c8f..2d2181eca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -97,6 +97,8 @@ once_cell = { version = "1.10", optional = true } pyo3 = { version = "0.16", features = [ "abi3-py38", "auto-initialize", + # Automatically generates `python3.dll` import libraries for Windows targets. + "generate-abi3-import-lib", ], optional = true } qsv-dateparser = "0.2" qsv-stats = "0.3"