# 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 = "rmatrix_ks" version = "0.4.1" authors = ["Kevin Stephen "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "matrix and some algebra in Rust" documentation = "https://docs.rs/rmatrix_ks" readme = "README.md" keywords = [ "math", "matrix", ] license = "AGPL-3.0-or-later" repository = "https://github.com/kands-code/rmatrix" resolver = "2" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "doc_cfg", "--generate-link-to-definition", ] [lib] name = "rmatrix_ks" crate-type = ["rlib"] path = "src/lib.rs" [[bin]] name = "rmatrix_ks" path = "src/main.rs" [dependencies.rand] version = "^0.8.5" optional = true [dependencies.serde] version = "^1.0.210" features = ["derive"] optional = true [dependencies.serde_json] version = "^1.0.128" optional = true [features] default = ["rand_mat"] rand_mat = ["rand"] serde_mat = [ "serde", "serde_json", ]