-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathCargo.toml
31 lines (28 loc) · 929 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
[package]
name = "numpy"
version = "0.17.1"
authors = [
"The rust-numpy Project Developers",
"PyO3 Project and Contributors <https://github.com/PyO3>"
]
description = "PyO3-based Rust bindings of the NumPy C-API"
documentation = "https://docs.rs/numpy"
edition = "2018"
rust-version = "1.48"
repository = "https://github.com/PyO3/rust-numpy"
categories = ["api-bindings", "development-tools::ffi", "science"]
keywords = ["python", "numpy", "ffi", "pyo3"]
license = "BSD-2-Clause"
[dependencies]
ahash = "0.7"
half = { version = "1.8", default-features = false, optional = true }
libc = "0.2"
num-complex = ">= 0.2, < 0.5"
num-integer = "0.1"
num-traits = "0.2"
ndarray = ">= 0.13, < 0.16"
pyo3 = { version = "0.17", default-features = false, features = ["macros"] }
[dev-dependencies]
pyo3 = { version = "0.17", default-features = false, features = ["auto-initialize"] }
[package.metadata.docs.rs]
all-features = true