2021-03-16 16:07:18 +00:00
|
|
|
[package]
|
|
|
|
name = "instant-distance-py"
|
2023-02-02 11:59:26 +00:00
|
|
|
version = "0.3.5"
|
2023-01-27 09:15:23 +00:00
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.58"
|
2021-03-16 16:07:18 +00:00
|
|
|
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"
|
2022-08-01 12:17:18 +00:00
|
|
|
instant-distance = { version = "0.6", path = "../instant-distance", features = ["with-serde"] }
|
2023-10-12 14:04:56 +00:00
|
|
|
pyo3 = { version = "0.20", features = ["extension-module"] }
|
2021-03-16 16:07:18 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2023-02-20 13:58:11 +00:00
|
|
|
serde-big-array = "0.5.0"
|