2015-04-26 08:32:58 +00:00
|
|
|
[package]
|
|
|
|
name = "python3-sys"
|
2015-09-19 13:37:29 +00:00
|
|
|
version = "0.1.2"
|
2015-04-26 08:32:58 +00:00
|
|
|
description = "FFI Declarations for Python 3"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = [
|
|
|
|
"python",
|
|
|
|
"cpython",
|
|
|
|
"libpython3",
|
|
|
|
]
|
2015-05-02 22:39:03 +00:00
|
|
|
homepage = "https://github.com/dgrunwald/rust-cpython/tree/master/python3-sys"
|
|
|
|
repository = "https://github.com/dgrunwald/rust-cpython/tree/master/python3-sys"
|
2015-04-26 08:32:58 +00:00
|
|
|
license = "Python-2.0"
|
|
|
|
authors = ["Daniel Grunwald <daniel@danielgrunwald.de>"]
|
2015-05-19 21:32:32 +00:00
|
|
|
links = "python3"
|
2015-04-26 08:32:58 +00:00
|
|
|
build = "build.rs"
|
|
|
|
exclude = [
|
|
|
|
".gitignore",
|
|
|
|
".travis.yml",
|
|
|
|
]
|
2016-12-17 20:17:11 +00:00
|
|
|
workspace = ".."
|
2015-04-26 08:32:58 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2015-11-07 16:10:20 +00:00
|
|
|
libc = "0.2"
|
2015-04-26 08:32:58 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2016-03-05 16:40:41 +00:00
|
|
|
regex = "0.1"
|
2015-04-26 08:32:58 +00:00
|
|
|
|
2015-05-19 21:32:32 +00:00
|
|
|
[features]
|
|
|
|
# This is examined by ./build.rs to determine which python version
|
|
|
|
# to try to bind to.
|
2015-05-25 13:41:26 +00:00
|
|
|
default = ["python-3"]
|
|
|
|
|
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.
|
|
|
|
extension-module = [ ]
|
|
|
|
|
2015-05-25 13:41:26 +00:00
|
|
|
# Bind to any python 3.x.
|
|
|
|
python-3 = []
|
|
|
|
|
|
|
|
# Or, bind to a particular minor version.
|
|
|
|
python-3-4 = []
|
|
|
|
python-3-5 = []
|
2016-12-10 10:27:52 +00:00
|
|
|
python-3-6 = []
|
2015-09-19 13:37:29 +00:00
|
|
|
|
|
|
|
# Restrict to PEP-384 stable ABI
|
|
|
|
pep-384 = []
|
|
|
|
|