Skip to content

Commit

Permalink
Merge pull request #250 from PyO3/update-metadata-in-cargo-toml
Browse files Browse the repository at this point in the history
Update metadata in Cargo.toml
  • Loading branch information
adamreichold authored Jan 10, 2022
2 parents eb1068b + 406b24e commit e09d48f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- Support object arrays ([#216](https://github.com/PyO3/rust-numpy/pull/216))
- Support borrowing arrays that are part of other Python objects via `PyArray::borrow_from_array` ([#230](https://github.com/PyO3/rust-numpy/pull/216))
- `PyArray::new` is now `unsafe`, as it produces uninitialized arrays ([#220](https://github.com/PyO3/rust-numpy/pull/220))
- `rayon` feature is now removed, and directly specifying the feature via `ndarray` dependency is recommended ([#250](https://github.com/PyO3/rust-numpy/pull/250))

- v0.15.1
- Make arrays produced via `IntoPyArray`, i.e. those owning Rust data, writeable ([#235](https://github.com/PyO3/rust-numpy/pull/235))
Expand Down
15 changes: 6 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@
name = "numpy"
version = "0.15.1"
authors = [
"Toshiki Teramura <toshiki.teramura@gmail.com>",
"Yuji Kanagawa <yuji.kngw.80s.revive@gmail.com>",
"The rust-numpy Project Developers",
"PyO3 Project and Contributors <https://github.com/PyO3>"
]
description = "Rust binding of NumPy C-API"
documentation = "https://pyo3.github.io/rust-numpy/numpy"
description = "Rust bindings of NumPy C-API"
documentation = "https://docs.rs/numpy"
edition = "2018"
rust-version = "1.48"
repository = "https://github.com/PyO3/rust-numpy"
keywords = ["numpy", "python", "binding"]
categories = ["api-bindings", "development-tools::ffi", "science"]
keywords = ["python", "numpy", "ffi", "pyo3"]
license = "BSD-2-Clause"

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

[features]
default = []
rayon = ["ndarray/rayon"]

[workspace]
members = ["examples/*"]

0 comments on commit e09d48f

Please sign in to comment.