Merge pull request #75 from naufraghi/patch-1

Fix typo: Mac OS `dynlib` -> `dylib`
This commit is contained in:
Daniel Grunwald 2017-01-18 01:09:54 +01:00 committed by GitHub
commit 97727b2b21

View file

@ -59,7 +59,7 @@ fn hello(py: Python) -> PyResult<()> {
Example library with python bindings:
The following two files will build with `cargo build`, and will generate a python-compatible library.
On Mac OS, you will need to rename the output from \*.dynlib to \*.so.
On Mac OS, you will need to rename the output from \*.dylib to \*.so.
On Windows, you will need to rename the output from \*.dll to \*.pyd.
**`Cargo.toml`:**