-
-
Notifications
You must be signed in to change notification settings - Fork 282
/
Cargo.toml
68 lines (60 loc) · 1.68 KB
/
Cargo.toml
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
[package]
authors = ["konstin <[email protected]>"]
name = "pyo3-pack"
version = "0.3.0"
description = "Build and publish crates with pyo3 bindings as python packages"
exclude = ["get-fourtytwo/**/*", "integration-test/**/*", "sysconfig/*"]
readme = "Readme.md"
repository = "https://github.com/pyo3/pyo3-pack"
license = "MIT OR Apache-2.0"
keywords = ["python", "cffi", "packaging", "pypi", "pyo3"]
categories = ["api-bindings", "development-tools::ffi", "command-line-utilities"]
[badges]
travis-ci = { repository = "PyO3/pyo3-pack" }
appveyor = { repository = "konstin/pyo3" }
[[bin]]
name = "pyo3-pack"
[lib]
name = "pyo3_pack"
[dependencies]
base64 = "0.9.2"
cargo_metadata = "0.6.0"
digest = { version = "0.7.5", features = ["std"] }
failure = "0.1.2"
keyring = { version = "0.6.0", optional = true }
reqwest = { version = "0.8.8", optional = true }
rpassword = "2.0.0"
serde_derive = "1.0.78"
serde_json = "1.0.27"
sha2 = "0.7.1"
structopt = "0.2.10"
target_info = "0.1.0"
toml = "0.4.6"
zip = "0.4.2"
serde = "1.0.78"
tar = { version = "0.4.16", optional = true }
libflate = { version = "0.1.16", optional = true }
human-panic = "1.0.1"
regex = "1.0.5"
indicatif = "0.9.0"
atty = "0.2.11"
tempfile = "3.0.3"
goblin = { version = "0.0.17", optional = true }
[dev-dependencies]
indoc = "0.2.8"
[features]
default = ["auditwheel", "upload", "password-storage"]
auditwheel = ["goblin"]
# sdists can be created, but they are currently useless (#2)
sdist = ["tar", "libflate"]
upload = ["reqwest"]
password-storage = ["upload", "keyring"]
[workspace]
members = [
"get-fourtytwo",
"hello-world"
]
# This is necessary due to https://github.com/eqrion/cbindgen/issues/203
exclude = [
"points"
]