forked from oldnordic/sqlitegraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (20 loc) · 662 Bytes
/
Copy pathCargo.toml
File metadata and controls
23 lines (20 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "sqlitegraph-py"
version = "0.5.3"
edition = "2021"
description = "Python bindings for sqlitegraph via PyO3"
license = "GPL-3.0-only"
[lib]
name = "_native"
crate-type = ["cdylib"]
[features]
default = []
# Sparse-inference research engine. Pulls in numpy + ndarray. Off by default
# so end users only get the graph database surface.
inference = ["dep:numpy", "dep:ndarray"]
[dependencies]
sqlitegraph = { version = "3.2.0", path = "../sqlitegraph-core" }
pyo3 = { version = "0.29", features = ["extension-module", "abi3-py310"] }
serde_json = "1"
numpy = { version = "0.29", optional = true }
ndarray = { version = "0.16", optional = true }