Fix build on rustc nightly-2017-09-16
Use forked version of spin-rs for now. Closes #79
This commit is contained in:
parent
70c7b4a2a2
commit
9da1247484
|
@ -20,7 +20,7 @@ appveyor = { repository = "PyO3/pyo3" }
|
|||
[dependencies]
|
||||
log = "0.3"
|
||||
libc = "0.2"
|
||||
spin = "0.4"
|
||||
spin = { git = "https://github.com/messense/spin-rs.git", branch = "master" }
|
||||
num-traits = "0.1"
|
||||
pyo3cls = { path = "pyo3cls" }
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#![feature(specialization, proc_macro, const_fn, try_from)]
|
||||
#![feature(specialization, proc_macro, const_fn, const_unsafe_cell_new, const_size_of, const_ptr_null, const_ptr_null_mut, try_from)]
|
||||
|
||||
//! Rust bindings to the Python interpreter.
|
||||
//!
|
||||
|
|
Loading…
Reference in New Issue