rust/hg-cpython/src/cindex.rs
changeset 42609 326fdce22fb2
parent 41350 ab0d762d89ef
child 43213 0246bbe1045d
--- a/rust/hg-cpython/src/cindex.rs	Fri Jul 12 11:08:31 2019 +0200
+++ b/rust/hg-cpython/src/cindex.rs	Tue Jul 02 17:15:03 2019 +0200
@@ -10,14 +10,14 @@
 //! Ideally, we should use an Index entirely implemented in Rust,
 //! but this will take some time to get there.
 #[cfg(feature = "python27")]
-extern crate python27_sys as python_sys;
+use python27_sys as python_sys;
 #[cfg(feature = "python3")]
-extern crate python3_sys as python_sys;
+use python3_sys as python_sys;
 
-use self::python_sys::PyCapsule_Import;
 use cpython::{PyClone, PyErr, PyObject, PyResult, Python};
 use hg::{Graph, GraphError, Revision, WORKING_DIRECTORY_REVISION};
 use libc::c_int;
+use python_sys::PyCapsule_Import;
 use std::ffi::CStr;
 use std::mem::transmute;