2021-03-16 16:07:18 +00:00
|
|
|
[package]
|
|
|
|
name = "instant-distance-py"
|
2022-03-28 09:18:14 +00:00
|
|
|
version = "0.3.2"
|
2021-03-16 16:07:18 +00:00
|
|
|
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "MIT OR Apache-2.0"
|
2021-09-06 14:25:43 +00:00
|
|
|
workspace = ".."
|
|
|
|
description = "Fast minimal implementation of HNSW maps for approximate nearest neighbors searches"
|
|
|
|
homepage = "https://github.com/InstantDomain/instant-distance"
|
|
|
|
repository = "https://github.com/InstantDomain/instant-distance"
|
|
|
|
readme = "../README.md"
|
2021-03-16 16:07:18 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "instant_distance"
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2021-03-18 12:54:16 +00:00
|
|
|
bincode = "1.3.1"
|
2021-05-20 19:41:23 +00:00
|
|
|
instant-distance = { version = "0.5", path = "../instant-distance", features = ["with-serde"] }
|
2022-02-28 13:06:57 +00:00
|
|
|
pyo3 = { version = "0.16", features = ["extension-module"] }
|
2021-03-16 16:07:18 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2022-03-28 09:18:14 +00:00
|
|
|
serde-big-array = "0.4.1"
|
2021-03-18 12:22:22 +00:00
|
|
|
|
|
|
|
[package.metadata.maturin]
|
|
|
|
name = "instant-distance"
|