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.master
parent
f3ea129fa7
commit
82dbd452ea
|
@ -7,7 +7,7 @@ license = "MIT"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "tantivy"
|
name = "tantivy"
|
||||||
crate-type = ["dylib"]
|
crate-type = ["cdylib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
|
|
Loading…
Reference in New Issue