instant-distance/instant-distance-py/Cargo.toml

26 lines
803 B
TOML
Raw Normal View History

2021-03-16 16:07:18 +00:00
[package]
name = "instant-distance-py"
2021-05-21 14:53:06 +00:00
version = "0.3.0"
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"] }
pyo3 = { version = "0.14.1", features = ["extension-module"] }
2021-03-16 16:07:18 +00:00
serde = { version = "1", features = ["derive"] }
serde-big-array = "0.3.2"
2021-03-18 12:22:22 +00:00
[package.metadata.maturin]
name = "instant-distance"