# 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 = "2021" name = "sparseglm" version = "0.1.0" authors = ["Pierre-Antoine Bannier "] build = false exclude = ["/.github"] autobins = false autoexamples = false autotests = false autobenches = false description = "Fast memory-efficient solver for sparse generalized linear models" readme = "README.md" keywords = [ "machine", "learning", "data", "linear", ] categories = ["science"] license-file = "LICENSE" repository = "https://github.com/PABannier/sparseglm" [lib] name = "sparseglm" path = "src/lib.rs" [[example]] name = "elastic_net" path = "examples/elastic_net.rs" [[example]] name = "lasso" path = "examples/lasso.rs" [[example]] name = "multi_task_lasso" path = "examples/multi_task_lasso.rs" [[example]] name = "sparse_logistic_regression" path = "examples/sparse_logistic_regression.rs" [[bench]] name = "bench_lasso" path = "benches/bench_lasso.rs" harness = false [dependencies.approx] version = "0.4" [dependencies.ndarray] version = "0.15" features = ["approx"] default-features = false [dependencies.ndarray-linalg] version = "0.14" optional = true [dependencies.ndarray-stats] version = "0.5.0" [dependencies.num-traits] version = "0.2" [dependencies.rand] version = "0.8" features = ["small_rng"] [dependencies.rand_distr] version = "0.4.2" [dependencies.thiserror] version = "1.0" [dev-dependencies.criterion] version = "0.3" [dev-dependencies.linfa] version = "0.6.0"