pyo3/Cargo.toml

56 lines
1.7 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"
2020-10-12 15:18:25 +00:00
version = "0.12.3"
2017-08-12 16:31:14 +00:00
description = "Bindings to Python interpreter"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
2015-04-19 05:50:50 +00:00
readme = "README.md"
2018-05-30 13:03:31 +00:00
keywords = ["pyo3", "python", "cpython", "ffi"]
2017-05-13 05:05:00 +00:00
homepage = "https://github.com/pyo3/pyo3"
2018-08-30 21:19:23 +00:00
repository = "https://github.com/pyo3/pyo3"
2018-11-02 21:32:18 +00:00
documentation = "https://docs.rs/crate/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", ".cargo/config"]
build = "build.rs"
2019-02-01 13:01:18 +00:00
edition = "2018"
2015-01-05 16:05:53 +00:00
2015-03-08 14:29:44 +00:00
[dependencies]
ctor = { version = "0.1", optional = true }
2020-11-12 11:09:24 +00:00
indoc = { version = "1.0.3", optional = true }
inventory = { version = "0.1.4", optional = true }
libc = "0.2.62"
parking_lot = "0.11.0"
num-bigint = { version = "0.3", optional = true }
num-complex = { version = "0.3", optional = true }
2020-11-12 11:09:24 +00:00
paste = { version = "1.0.3", optional = true }
2020-10-12 15:18:25 +00:00
pyo3cls = { path = "pyo3cls", version = "=0.12.3", optional = true }
unindent = { version = "0.1.4", optional = true }
hashbrown = { version = "0.9", optional = true }
2017-06-18 15:41:20 +00:00
2018-04-21 18:01:41 +00:00
[dev-dependencies]
2019-02-01 14:05:37 +00:00
assert_approx_eq = "1.1.0"
trybuild = "1.0.23"
2020-06-18 09:49:43 +00:00
rustversion = "1.0"
2018-04-21 18:01:41 +00:00
[features]
default = ["macros"]
macros = ["ctor", "indoc", "inventory", "paste", "pyo3cls", "unindent"]
# Use the Python limited API. See https://www.python.org/dev/peps/pep-0384/ for
# more.
abi3 = []
# Optimizes PyObject to Vec conversion and so on.
2020-06-17 08:10:00 +00:00
nightly = []
2017-06-11 23:35:24 +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.
2017-05-13 05:05:00 +00:00
extension-module = []
[workspace]
members = [
"pyo3cls",
"pyo3-derive-backend",
2018-08-21 22:02:37 +00:00
"examples/*"
]