[package]
edition = "2024"
name = "pineapple-neural"
version = "0.0.5"
authors = ["Tom W. Ouellette <touellette112@gmail.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simplified processing for image-based cell profiling with pineapple"
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/tomouellette/pineapple"
resolver = "2"
[lib]
name = "pineapple_neural"
path = "src/lib.rs"
[dependencies.pineapple-core]
version = "0.0.5"
[dependencies.pineapple-data]
version = "0.0.5"
[dependencies.serde]
version = "1.0.190"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.133"
[target.'cfg(all(target_os = "macos", target_arch = "aarch64"))'.dependencies.candle-core]
version = "0.8.2"
features = [
"metal",
"accelerate",
]
[target.'cfg(all(target_os = "macos", target_arch = "aarch64"))'.dependencies.candle-nn]
version = "0.8.2"
features = [
"metal",
"accelerate",
]
[target.'cfg(all(target_os = "macos", target_arch = "x86_64"))'.dependencies.candle-core]
version = "0.8.2"
features = ["accelerate"]
[target.'cfg(all(target_os = "macos", target_arch = "x86_64"))'.dependencies.candle-nn]
version = "0.8.2"
features = ["accelerate"]
[target.'cfg(target_os = "linux")'.dependencies.candle-core]
version = "0.8.2"
[target.'cfg(target_os = "linux")'.dependencies.candle-nn]
version = "0.8.2"
[target.'cfg(target_os = "linux")'.dependencies.openssl]
version = "0.10"
features = ["vendored"]
[target.'cfg(target_os = "windows")'.dependencies.candle-core]
version = "0.8.2"
[target.'cfg(target_os = "windows")'.dependencies.candle-nn]
version = "0.8.2"