- some workarounds to get jars and shared libs in the right place for python

- add most ndbioimage python code and use rs code as bfread
This commit is contained in:
Wim Pomp
2025-02-16 23:02:40 +01:00
parent fefdd6448b
commit 372b816f93
19 changed files with 3035 additions and 23 deletions

View File

@@ -13,7 +13,7 @@ exclude = ["/tests"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "ndbioimage"
crate-type = ["cdylib"]
crate-type = ["cdylib", "rlib"]
[dependencies]
anyhow = "1.0.95"
@@ -31,9 +31,9 @@ optional = true
rayon = "1.10.0"
[build-dependencies]
anyhow = { version = "1.0.95"}
j4rs = { version = "0.22", features = [] }
retry = { version = "2.0.0"}
anyhow = "1.0.95"
j4rs = "0.22.0"
retry = "2.0.0"
[features]
python = ["dep:pyo3", "dep:numpy"]