2015-01-05 16:05:53 +00:00
|
|
|
[package]
|
2017-05-13 05:05:00 +00:00
|
|
|
name = "pyo3"
|
2018-11-04 23:32:46 +00:00
|
|
|
version = "0.5.0"
|
2017-08-12 16:31:14 +00:00
|
|
|
description = "Bindings to Python interpreter"
|
2018-05-14 16:53:31 +00:00
|
|
|
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
|
2015-04-19 05:50:50 +00:00
|
|
|
readme = "README.md"
|
2018-05-30 13:03:31 +00:00
|
|
|
keywords = ["pyo3", "python", "cpython", "ffi"]
|
2017-05-13 05:05:00 +00:00
|
|
|
homepage = "https://github.com/pyo3/pyo3"
|
2018-08-30 21:19:23 +00:00
|
|
|
repository = "https://github.com/pyo3/pyo3"
|
2018-11-02 21:32:18 +00:00
|
|
|
documentation = "https://docs.rs/crate/pyo3/"
|
2017-01-20 23:41:44 +00:00
|
|
|
categories = ["api-bindings", "development-tools::ffi"]
|
2017-07-23 18:21:01 +00:00
|
|
|
license = "Apache-2.0"
|
2018-09-17 17:46:50 +00:00
|
|
|
exclude = ["/.gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
2015-05-17 12:14:47 +00:00
|
|
|
build = "build.rs"
|
2015-01-05 16:05:53 +00:00
|
|
|
|
2017-08-12 16:53:15 +00:00
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "PyO3/pyo3", branch = "master" }
|
2018-08-04 17:55:15 +00:00
|
|
|
appveyor = { repository = "fafhrd91/pyo3" }
|
2017-11-27 19:40:03 +00:00
|
|
|
codecov = { repository = "PyO3/pyo3", branch = "master", service = "github" }
|
2017-08-12 16:53:15 +00:00
|
|
|
|
2015-03-08 14:29:44 +00:00
|
|
|
[dependencies]
|
2018-08-20 12:30:52 +00:00
|
|
|
libc = "0.2.43"
|
2018-08-14 09:20:14 +00:00
|
|
|
spin = "0.4.9"
|
2018-10-29 16:36:06 +00:00
|
|
|
num-traits = "0.2.6"
|
2018-11-04 23:32:46 +00:00
|
|
|
pyo3cls = { path = "pyo3cls", version = "=0.5.0" }
|
2018-10-29 16:36:06 +00:00
|
|
|
mashup = "0.1.9"
|
|
|
|
num-complex = { version = "0.2.1", optional = true }
|
2017-06-18 15:41:20 +00:00
|
|
|
|
2018-04-21 18:01:41 +00:00
|
|
|
[dev-dependencies]
|
2018-10-29 16:36:06 +00:00
|
|
|
assert_approx_eq = "1.0.0"
|
2018-08-04 17:55:15 +00:00
|
|
|
docmatic = "0.1.2"
|
2018-12-03 06:57:55 +00:00
|
|
|
indoc = "0.3.1"
|
2018-04-21 18:01:41 +00:00
|
|
|
|
2017-05-13 05:05:00 +00:00
|
|
|
[build-dependencies]
|
2018-09-08 22:19:55 +00:00
|
|
|
regex = "1.0.5"
|
2018-10-29 16:36:06 +00:00
|
|
|
version_check = "0.1.5"
|
2015-05-19 21:32:32 +00:00
|
|
|
|
|
|
|
[features]
|
2017-06-11 23:35:24 +00:00
|
|
|
default = []
|
|
|
|
|
|
|
|
# Use this feature when building python2 binding.
|
|
|
|
python2 = []
|
|
|
|
|
|
|
|
# Use this feature when building python3 binding.
|
|
|
|
python3 = []
|
2015-05-25 13:41:26 +00:00
|
|
|
|
2016-12-17 20:17:11 +00:00
|
|
|
# Use this feature when building an extension module.
|
|
|
|
# It tells the linker to keep the python symbols unresolved,
|
|
|
|
# so that the module can also be used with statically linked python interpreters.
|
2017-05-13 05:05:00 +00:00
|
|
|
extension-module = []
|
2018-06-13 16:02:45 +00:00
|
|
|
|
2018-07-22 19:35:54 +00:00
|
|
|
# The stable cpython abi as defined in PEP 384. Currently broken with
|
|
|
|
# many compilation errors. Pull Requests working towards fixing that
|
|
|
|
# are welcome.
|
|
|
|
# abi3 = []
|
|
|
|
|
2018-06-13 16:02:45 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"pyo3cls",
|
|
|
|
"pyo3-derive-backend",
|
2018-08-21 22:02:37 +00:00
|
|
|
"examples/*"
|
|
|
|
]
|