File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,14 @@ Rust binding of NumPy C-API
8
8
9
9
API documentation
10
10
-------------
11
- - [ Latest release(can be broken)] ( https://docs.rs/numpy )
11
+ - [ Latest release(possibly broken)] ( https://docs.rs/numpy )
12
12
- [ Current Master] ( https://rust-numpy.github.io/rust-numpy )
13
13
14
14
15
- Dependencies
15
+ Requirements
16
16
-------------
17
- - nightly version of rust compiler (see [ pyo3] ( https://github.com/PyO3/pyo3 ) )
17
+ - current nightly rust (see https://github.com/PyO3/pyo3/issues/5 for nightly features, and
18
+ https://github.com/PyO3/pyo3/blob/master/build.rs for minimum required version)
18
19
- some rust libraries
19
20
- [ rust-ndarray] ( https://github.com/bluss/rust-ndarray ) for rust-side matrix library
20
21
- [ pyo3] ( https://github.com/PyO3/pyo3 ) for cpython binding
@@ -23,7 +24,7 @@ Dependencies
23
24
24
25
** Note**
25
26
From 0.3, we migrated from rust-cpython to pyo3.
26
- If you want rust-cpython, use version 0.2.1 from crates.io.
27
+ If you want to use rust-cpython, use version 0.2.1 from crates.io.
27
28
28
29
29
30
Example
Original file line number Diff line number Diff line change 1
- //! `rust-numpy` provides Rust interfaces for [numpy](http ://www.numpy .org/) APIs ,
2
- //! especially [ndarray](https://www.numpy.org/devdocs/reference/arrays.ndarray.html) class.
1
+ //! `rust-numpy` provides Rust interfaces for [NumPy C APIs](https ://docs.scipy .org/doc/numpy/reference/c-api.html) ,
2
+ //! especially for [ndarray](https://www.numpy.org/devdocs/reference/arrays.ndarray.html) class.
3
3
//!
4
4
//! It uses [pyo3](https://github.com/PyO3/pyo3) for rust bindings to cpython, and uses
5
5
//! [ndarray](https://github.com/bluss/ndarray) for rust side matrix library.
6
6
//!
7
- //! For numpy dependency, it calls `import numpy.core` internally so you just need numpy
7
+ //! For numpy dependency, it calls `import numpy.core` internally. So you just need numpy
8
8
//! installed by `pip install numpy` or other ways in your python environment.
9
9
//! You can use both system environment and `virtualenv`.
10
10
//!
You can’t perform that action at this time.
0 commit comments