Skip to content

Commit e09d48f

Browse files
authored
Merge pull request #250 from PyO3/update-metadata-in-cargo-toml
Update metadata in Cargo.toml
2 parents eb1068b + 406b24e commit e09d48f

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- Support object arrays ([#216](https://github.com/PyO3/rust-numpy/pull/216))
55
- Support borrowing arrays that are part of other Python objects via `PyArray::borrow_from_array` ([#230](https://github.com/PyO3/rust-numpy/pull/216))
66
- `PyArray::new` is now `unsafe`, as it produces uninitialized arrays ([#220](https://github.com/PyO3/rust-numpy/pull/220))
7+
- `rayon` feature is now removed, and directly specifying the feature via `ndarray` dependency is recommended ([#250](https://github.com/PyO3/rust-numpy/pull/250))
78

89
- v0.15.1
910
- Make arrays produced via `IntoPyArray`, i.e. those owning Rust data, writeable ([#235](https://github.com/PyO3/rust-numpy/pull/235))

Cargo.toml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22
name = "numpy"
33
version = "0.15.1"
44
authors = [
5-
"Toshiki Teramura <[email protected]>",
6-
"Yuji Kanagawa <yuji.kngw.80s.revive@gmail.com>",
5+
"The rust-numpy Project Developers",
6+
"PyO3 Project and Contributors <https://github.com/PyO3>"
77
]
8-
description = "Rust binding of NumPy C-API"
9-
documentation = "https://pyo3.github.io/rust-numpy/numpy"
8+
description = "Rust bindings of NumPy C-API"
9+
documentation = "https://docs.rs/numpy"
1010
edition = "2018"
1111
rust-version = "1.48"
1212
repository = "https://github.com/PyO3/rust-numpy"
13-
keywords = ["numpy", "python", "binding"]
13+
categories = ["api-bindings", "development-tools::ffi", "science"]
14+
keywords = ["python", "numpy", "ffi", "pyo3"]
1415
license = "BSD-2-Clause"
1516

1617
[dependencies]
@@ -24,9 +25,5 @@ pyo3 = { version = "0.15", default-features = false }
2425
[dev-dependencies]
2526
pyo3 = { version = "0.15", features = ["auto-initialize"] }
2627

27-
[features]
28-
default = []
29-
rayon = ["ndarray/rayon"]
30-
3128
[workspace]
3229
members = ["examples/*"]

0 commit comments

Comments
 (0)