mixt 0.2.0

Estimate mixture model weights for a fixed log-likelihood matrix.
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 = "mixt"
version = "0.2.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Estimate mixture model weights for a fixed log-likelihood matrix."
homepage = "https://docs.rs/mixt"
readme = "README.md"
license = "LGPL-2.1-or-later"
repository = "https://codeberg.org/themaklin/mixt"

[features]
cli = []
cxxbridge = [
    "dep:cxx",
    "dep:cxx-build",
]
default = [
    "wgpu",
    "ndarray",
]
ndarray = ["burn/ndarray"]
vulkan = ["burn/vulkan"]
webgpu = ["burn/webgpu"]
wgpu = ["burn/wgpu"]

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

[[bin]]
name = "mixt"
path = "src/main.rs"
test = false
bench = false
required-features = ["cli"]

[[test]]
name = "rcg_test"
path = "tests/rcg_test.rs"

[[bench]]
name = "em_benches"
path = "benches/em_benches.rs"
harness = false

[[bench]]
name = "rcg_benches"
path = "benches/rcg_benches.rs"
harness = false

[[bench]]
name = "tensor_math_benches"
path = "benches/tensor_math_benches.rs"
harness = false

[dependencies.approx]
version = "0.5"

[dependencies.burn]
version = "0.21"
features = ["ndarray"]
default-features = false

[dependencies.burn-tensor]
version = "0.21"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.csv]
version = "1.3.0"

[dependencies.cxx]
version = "1.0"
optional = true

[dependencies.log]
version = "0.4.20"

[dependencies.num]
version = "0.4"

[dependencies.stderrlog]
version = "0.6.0"

[dev-dependencies.assert_approx_eq]
version = "1.1"

[dev-dependencies.criterion]
version = "0.7"
features = ["html_reports"]

[dev-dependencies.rand]
version = "0.9"

[dev-dependencies.rand_chacha]
version = "0.9"

[dev-dependencies.rand_distr]
version = "0.5"

[dev-dependencies.statrs]
version = "0.18"

[build-dependencies.cxx-build]
version = "1.0"
optional = true