-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (36 loc) · 946 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "faasle"
version = "0.1.0"
edition = "2021"
crate-type = ["lib"]
authors = ["Meesum Qazalbash <meesumqazalbash@gmail.com>"]
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"]