Skip to content

Commit 9da1247

Browse files
committed
Fix build on rustc nightly-2017-09-16
Use forked version of spin-rs for now. Closes #79
1 parent 70c7b4a commit 9da1247

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ appveyor = { repository = "PyO3/pyo3" }
2020
[dependencies]
2121
log = "0.3"
2222
libc = "0.2"
23-
spin = "0.4"
23+
spin = { git = "https://github.com/messense/spin-rs.git", branch = "master" }
2424
num-traits = "0.1"
2525
pyo3cls = { path = "pyo3cls" }
2626

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(specialization, proc_macro, const_fn, try_from)]
1+
#![feature(specialization, proc_macro, const_fn, const_unsafe_cell_new, const_size_of, const_ptr_null, const_ptr_null_mut, try_from)]
22

33
//! Rust bindings to the Python interpreter.
44
//!

0 commit comments

Comments
 (0)