2015-01-05 16:05:53 +00:00
|
|
|
[package]
|
2017-05-13 05:05:00 +00:00
|
|
|
name = "pyo3"
|
2016-12-17 20:41:14 +00:00
|
|
|
version = "0.1.0"
|
2015-07-04 18:28:40 +00:00
|
|
|
description = "Bindings to Python"
|
2017-05-13 05:05:00 +00:00
|
|
|
authors = ["PyO3 Project and Contributors <https://github.com/PyO3"]
|
2015-04-19 05:50:50 +00:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = [
|
2017-05-14 19:52:30 +00:00
|
|
|
"pyo3",
|
2015-04-19 05:50:50 +00:00
|
|
|
"python",
|
|
|
|
]
|
2017-05-13 05:05:00 +00:00
|
|
|
homepage = "https://github.com/pyo3/pyo3"
|
|
|
|
repository = "https://github.com/pyo3/pyo3.git"
|
|
|
|
documentation = "http://pyo3.github.io/pyo3/doc/pyo3/"
|
2017-01-20 23:41:44 +00:00
|
|
|
categories = ["api-bindings", "development-tools::ffi"]
|
2017-05-13 05:05:00 +00:00
|
|
|
license = "MIT/APACHE-2"
|
2015-04-19 05:50:50 +00:00
|
|
|
exclude = [
|
|
|
|
".gitignore",
|
|
|
|
".travis.yml",
|
2015-07-04 18:28:40 +00:00
|
|
|
".cargo/config",
|
2017-05-14 19:52:30 +00:00
|
|
|
"appveyor.yml",
|
2015-04-19 05:50:50 +00:00
|
|
|
]
|
2015-05-17 12:14:47 +00:00
|
|
|
build = "build.rs"
|
2015-01-05 16:05:53 +00:00
|
|
|
|
2015-03-08 14:29:44 +00:00
|
|
|
[dependencies]
|
2015-11-07 16:10:20 +00:00
|
|
|
libc = "0.2"
|
2016-04-17 21:35:17 +00:00
|
|
|
num-traits = "0.1"
|
2017-05-14 19:52:30 +00:00
|
|
|
pyo3cls = { path = "pyo3cls" }
|
2015-05-17 12:14:47 +00:00
|
|
|
|
2017-05-13 05:05:00 +00:00
|
|
|
[build-dependencies]
|
|
|
|
regex = "0.1"
|
2015-05-19 21:32:32 +00:00
|
|
|
|
|
|
|
[features]
|
2017-05-14 19:52:30 +00:00
|
|
|
default = ["nightly"]
|
2015-05-25 13:41:26 +00:00
|
|
|
|
2016-03-05 23:03:17 +00:00
|
|
|
# Enable additional features that require nightly rust
|
|
|
|
nightly = []
|
|
|
|
|
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 = []
|