-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (39 loc) · 931 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
42
43
44
45
46
47
[package]
name = "blazing_encoders"
version = "0.1.1"
authors = ["Kirill Dubovikov <[email protected]>"]
edition = "2018"
[lib]
name = "blazing_encoders"
crate-type = [
"cdylib",
"rlib"
]
bench = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dev-dependencies]
criterion = "0.3.1"
[[bench]]
name = "benchmark"
harness = false
[dependencies]
approx = "0.5.0"
rayon = "1.3.0"
ndarray = {version = "0.15.3", features=["rayon"]}
ordered-float = "2.5.1"
numpy = "0.13.1"
# pyo3 = { version = "0.13.1" }
num-traits = "0.2.11"
itertools = "0.10.1"
rand = "0.8.4"
#intel-mkl-sys = "0.1.0"
fnv = "1.0.6"
[dependencies.pyo3]
version = "0.13.2"
features = ["extension-module"]
# [features]
# # needed to run tests, see https://github.com/PyO3/pyo3/issues/340
# extension-module = ["pyo3/extension-module"]
# default = ["extension-module"]
#[profile.dev]
#opt-level = 3