mirror of
https://github.com/neodyland/sbv2-api.git
synced 2026-01-06 22:42:56 +00:00
24 lines
644 B
TOML
24 lines
644 B
TOML
[package]
|
|
name = "sbv2_bindings"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
readme.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
name = "sbv2_bindings"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
ndarray.workspace = true
|
|
pyo3 = { version = "0.23.0", features = ["anyhow"] }
|
|
sbv2_core = { path = "../sbv2_core", features = ["std"], default-features = false }
|
|
|
|
[features]
|
|
agpl_dict = ["sbv2_core/agpl_dict"]
|
|
default = ["agpl_dict"] |