flow-density 0.1.0

FFT-accelerated kernel density estimation for flow cytometry
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "flow-density"
version = "0.1.0"
authors = ["James Moynihan"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "FFT-accelerated kernel density estimation for flow cytometry"
readme = false
keywords = [
    "flow-cytometry",
    "kde",
    "kernel-density",
    "statistics",
]
categories = [
    "science",
    "algorithms",
]
license = "MIT"
repository = "https://github.com/jrmoynihan/flow/flow-density"

[package.metadata.scripts]
dry-release = "cargo smart-release flow-density --update-crates-index"
publish = "cargo smart-release flow-density --update-crates-index --execute"
changelog = "cargo changelog flow-density --write"

[features]
default = ["kde"]
gpu = [
    "dep:burn",
    "dep:cubecl",
    "dep:bytemuck",
]
kde = []

[lib]
name = "flow_density"
path = "src/lib.rs"

[dependencies.anyhow]
version = "1.0.102"

[dependencies.burn]
version = "0.20"
features = ["wgpu"]
optional = true

[dependencies.bytemuck]
version = "1.24"
features = ["derive"]
optional = true

[dependencies.cubecl]
version = "0.9"
optional = true

[dependencies.ndarray]
version = "0.16.1"
features = [
    "matrixmultiply-threading",
    "rayon",
    "serde",
]

[dependencies.rayon]
version = "1.11"

[dependencies.realfft]
version = "3.5.0"

[dependencies.thiserror]
version = "2.0.18"