pyo3/Cargo.toml

43 lines
1.1 KiB
TOML
Raw Normal View History

2015-01-05 16:05:53 +00:00
[package]
2017-05-13 05:05:00 +00:00
name = "pyo3"
version = "0.2.0"
2017-08-12 16:31:14 +00:00
description = "Bindings to Python interpreter"
authors = ["PyO3 Project and Contributors"]
2015-04-19 05:50:50 +00:00
readme = "README.md"
2017-07-23 18:21:01 +00:00
keywords = ["pyo3", "python", "cpython"]
2017-05-13 05:05:00 +00:00
homepage = "https://github.com/pyo3/pyo3"
repository = "https://github.com/pyo3/pyo3.git"
2017-07-23 18:36:26 +00:00
documentation = "https://pyo3.github.io/pyo3/pyo3/"
2017-01-20 23:41:44 +00:00
categories = ["api-bindings", "development-tools::ffi"]
2017-07-23 18:21:01 +00:00
license = "Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
build = "build.rs"
2015-01-05 16:05:53 +00:00
2015-03-08 14:29:44 +00:00
[dependencies]
2017-06-06 03:25:00 +00:00
log = "0.3"
libc = "0.2"
2017-07-09 06:08:57 +00:00
spin = "0.4"
num-traits = "0.1"
2017-08-12 16:31:14 +00:00
pyo3cls = "0.2.0"
2017-06-18 15:41:20 +00:00
2017-05-13 05:05:00 +00:00
[build-dependencies]
2017-05-21 10:08:26 +00:00
regex = "0.2"
version_check = "0.1"
[features]
2017-06-11 23:35:24 +00:00
default = []
# Use this feature when building python2 binding.
python2 = []
# Use this feature when building python3 binding.
python3 = []
# Enable additional features that require nightly rust
2017-06-11 23:35:24 +00:00
#nightly = []
# 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 = []