2015-04-26 08:32:58 +00:00
|
|
|
[package]
|
|
|
|
name = "python3-sys"
|
|
|
|
version = "0.1.0"
|
|
|
|
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>"]
|
|
|
|
build = "build.rs"
|
|
|
|
exclude = [
|
|
|
|
".gitignore",
|
|
|
|
".travis.yml",
|
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
libc = "*"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
pkg-config = "0.3"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
|
|
|
default = ["WITH_THREAD"]
|
|
|
|
|
|
|
|
Py_TRACE_REFS = []
|
|
|
|
WITH_THREAD = []
|
|
|
|
|
2015-05-02 22:39:03 +00:00
|
|
|
"python3_3" = []
|
|
|
|
"python3_4" = ["python3_3"]
|
2015-04-26 08:32:58 +00:00
|
|
|
|