# 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 = "mcdm" version = "0.2.0" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A Rust library to assist with solving Multiple-Criteria Decision Making (MCDM) problems." documentation = "https://docs.rs/mcdm" readme = "README.md" keywords = [ "mcdm", "multiple-criteria", "decision-making", "optimization", "ranking", ] categories = [ "science", "mathematics", ] license = "MIT" repository = "https://github.com/akrutsinger/mcdm" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", "--html-in-header", "./src/katex-header.html", ] [lib] name = "mcdm" path = "src/lib.rs" [[example]] name = "main" path = "examples/main.rs" [[test]] name = "criteria_type" path = "tests/criteria_type.rs" [[test]] name = "normalization" path = "tests/normalization.rs" [[test]] name = "ranking" path = "tests/ranking.rs" [[test]] name = "weighting" path = "tests/weighting.rs" [dependencies.error_set] version = "0.6" [dependencies.nalgebra] version = "0.33" features = [ "alloc", "libm", "macros", ] default-features = false [dev-dependencies.approx] version = "0.5" [features] alloc = [] default = ["std"] std = []