1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[]
= "python3-sys"
= "0.7.2"
= "FFI Declarations for Python 3"
= "README.md"
= [
"python",
"cpython",
"libpython3",
]
= "https://github.com/dgrunwald/rust-cpython/tree/master/python3-sys"
= "https://github.com/dgrunwald/rust-cpython/tree/master/python3-sys"
= ["external-ffi-bindings"]
= "Python-2.0"
= ["Daniel Grunwald <daniel@danielgrunwald.de>"]
= "python3"
= "build.rs"
= [
"/.gitignore",
"/.travis.yml",
]
= ".."
= "2018"
[]
= "0.2"
[]
= "1"
[]
# This is examined by ./build.rs to determine which python version
# to try to bind to.
= ["python-3"]
# 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.
= [ ]
# This feature implies default linking behavior.
#
# If not an extension module or on Windows, the crate will link against
# pythonXY where XY is derived from the discovered Python version. The link
# type will be static, shared, or framework depending on the discovered Python.
#
# The path to pythonXY from the discovered Python install may also be
# added to the linker search path.
#
# This link mode is used by default unless an alternate link mode feature is
# used.
= []
# This feature forces Python symbols to be unresolved by emitting a
# `rustc-link-lib=static-nobundle=pythonXY` directive on Windows (which
# is the only platform where it makes sense).
#
# This mode is useful for scenarios where you want another crate to emit
# the linker directives that define the location of a static Python library.
#
# This mode is typically not needed, as Python distributions on Windows
# rarely use a static Python library.
= []
# Bind to any python 3.x.
= []
# Or, bind to a particular minor version.
= []
= []
= []
= []
= []
= []
= []
= []
# Restrict to PEP-384 stable ABI
= []