pyo3/Cargo.toml

55 lines
1.2 KiB
TOML
Raw Normal View History

2015-01-05 16:05:53 +00:00
[package]
name = "cpython"
2016-03-05 16:51:55 +00:00
version = "0.0.5"
2015-07-04 18:28:40 +00:00
description = "Bindings to Python"
2015-01-05 16:05:53 +00:00
authors = ["Daniel Grunwald <daniel@danielgrunwald.de>"]
2015-04-19 05:50:50 +00:00
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",
2015-07-04 18:28:40 +00:00
"appveyor.yml",
".cargo/config",
2015-05-17 19:35:04 +00:00
"python27-sys",
"python3-sys",
2015-04-19 05:50:50 +00:00
]
build = "build.rs"
2015-01-05 16:05:53 +00:00
2015-03-08 14:29:44 +00:00
[dependencies]
libc = "0.2"
2015-08-25 18:02:50 +00:00
num = "0.1"
abort_on_panic = "1.0"
# These features are both optional, but you must pick one to
# indicate which python ffi you are trying to bind to.
[dependencies.python27-sys]
optional = true
path = "python27-sys"
2016-03-05 16:51:55 +00:00
version = "0.1.1"
2015-05-17 19:35:04 +00:00
[dependencies.python3-sys]
2015-07-04 18:28:40 +00:00
optional = true
path = "python3-sys"
2016-03-05 16:51:55 +00:00
version = "0.1.2"
[features]
default = ["python3-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"]
#pep-384 = ["python3-sys/pep-384"]