49 lines
1.2 KiB
TOML
49 lines
1.2 KiB
TOML
[package]
|
|
|
|
name = "cpython"
|
|
version = "0.0.1"
|
|
description = "Bindings to Python 2.7"
|
|
authors = ["Daniel Grunwald <daniel@danielgrunwald.de>"]
|
|
readme = "README.md"
|
|
keywords = [
|
|
"python",
|
|
"cpython",
|
|
"libpython27",
|
|
]
|
|
homepage = "https://github.com/dgrunwald/rust-cpython"
|
|
repository = "https://github.com/dgrunwald/rust-cpython.git"
|
|
documentation = "http://dgrunwald.github.io/rust-cpython/doc/cpython/"
|
|
license = "MIT"
|
|
exclude = [
|
|
".gitignore",
|
|
".travis.yml",
|
|
"python27-sys",
|
|
"python32-sys",
|
|
]
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
libc = "*"
|
|
num = "*"
|
|
interpolate_idents = "*"
|
|
|
|
# These features are both optional, but you must pick one to
|
|
# indicate which python ffi you are trying to bind to.
|
|
[dependencies.python27-sys]
|
|
path="python27-sys"
|
|
optional = true
|
|
|
|
[dependencies.python3-sys]
|
|
path = "python3-sys"
|
|
optional = true
|
|
|
|
[features]
|
|
# Maybe one day python 3 should be the default. But not this day.
|
|
default = ["python27-sys"]
|
|
|
|
# Optional features to support explicitly specifying python minor version.
|
|
# If you don't care which minor version, just specify python3-sys as a
|
|
# feature.
|
|
python-3-5 = ["python3-sys/python-3-5"]
|
|
python-3-4 = ["python3-sys/python-3-4"]
|