From 82dbd452eac52d7ec754eb377a4c73ca519d3472 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Fri, 2 Aug 2019 17:21:13 +0200 Subject: [PATCH] Cargo.toml: Switch to a cdylib. pyo3-pack requires the library to be a cdylib. This patch allows us to use pyo3-pack to build and publish tantivy-py using pyo3-pack. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e108ee4..0ff22e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT" [lib] name = "tantivy" -crate-type = ["dylib"] +crate-type = ["cdylib"] [dependencies] chrono = "0.4"