We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f6b31a commit cbbb4bfCopy full SHA for cbbb4bf
Cargo.toml
@@ -11,7 +11,6 @@ license-file = "LICENSE"
11
12
[dependencies]
13
libc = "0.2"
14
-cpython = "0.1"
15
-python3-sys = "0.1"
16
num-complex = "0.1"
17
ndarray = "0.10"
+pyo3 = "0.2"
src/lib.rs
@@ -1,8 +1,7 @@
1
-extern crate cpython;
2
extern crate libc;
3
extern crate ndarray;
4
extern crate num_complex;
5
-extern crate python3_sys as pyffi;
+extern crate pyo3;
6
7
pub mod array;
8
pub mod convert;
0 commit comments