[package] name = "faasle" version = "0.1.0" edition = "2021" crate-type = ["lib"] authors = ["Meesum Qazalbash "] rust-version = "1.80.1" description = "A Rust crate for evaluating distances (metrics)" readme = "README.md" homepage = "https://github.com/Qazalbash/faasle" repository = "https://github.com/Qazalbash/faasle" license = "MIT" keywords = [ "metrics", "distance", "multidimensional", "mathematics", "geometry", ] categories = ["mathematics", "no-std", "science"] include = ["src"] [lib] name = "faasle" path = "src/lib.rs" [dependencies] ndarray = "0.16.1" num-traits = "0.2.19" [dev-dependencies] ndarray = { version = "0.16.1", features = ["approx"] } ndarray-rand = "0.15.0" paste = "1.0.15" [package.metadata.docs.rs] # Enable all the features when building the docs on docs.rs all-features = true # define the configuration attribute `docsrs` rustdoc-args = ["--cfg", "docsrs"]