Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 830d74d

Browse files
authoredJun 3, 2021
Merge branch 'main' into upgrade-ndarray
2 parents f848bc4 + 702c44f commit 830d74d

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed
 

‎Cargo.toml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,27 @@
11
[package]
22
name = "numpy"
33
version = "0.13.1"
4-
authors = ["Toshiki Teramura <toshiki.teramura@gmail.com>", "Yuji Kanagawa <yuji.kngw.80s.revive@gmail.com>"]
4+
authors = [
5+
"Toshiki Teramura <toshiki.teramura@gmail.com>",
6+
"Yuji Kanagawa <yuji.kngw.80s.revive@gmail.com>",
7+
]
58
description = "Rust binding of NumPy C-API"
69
documentation = "https://pyo3.github.io/rust-numpy/numpy"
710
edition = "2018"
811
repository = "https://github.com/rust-numpy/rust-numpy"
912
keywords = ["numpy", "python", "binding"]
10-
license-file = "LICENSE"
13+
license = "BSD-2-Clause"
14+
resolver = "2"
1115

1216
[dependencies]
1317
cfg-if = "0.1"
1418
libc = "0.2"
15-
num-complex = ">= 0.2, < 0.4"
19+
num-complex = ">= 0.2, <= 0.4"
1620
num-traits = "0.2"
1721
ndarray = ">= 0.13, < 0.16"
22+
pyo3 = { version = "0.13", default-features = false }
23+
24+
[dev-dependencies]
1825
pyo3 = "0.13"
1926

2027
[features]

0 commit comments

Comments
 (0)
Please sign in to comment.