pyo3/pyo3-derive-backend
konstin cb6c287f1f Expect the pyo3 crate to be in scope for the codegen
This allows using generated code from crates that do not directly depend on pyo3.

E.g.:

```rust
extern crate my_pyo3_wrapper;

use my_pyo3_wrapper::pyo3;

#[py::modinit(rust2py)]
fn init_mod(py: Python, m: &PyModule) -> PyResult<()> {
    // ...
    Ok(())
}
2018-05-01 20:24:34 +02:00
..
src Expect the pyo3 crate to be in scope for the codegen 2018-05-01 20:24:34 +02:00
Cargo.toml Move the codegen into its own crate 2018-05-01 20:24:32 +02:00