-
-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #68 from PyO3/cbindgen
Add cbindgen to generate a header for cffi
- Loading branch information
Showing
11 changed files
with
126 additions
and
104 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
authors = ["konstin <[email protected]>"] | ||
name = "pyo3-pack" | ||
version = "0.4.3" | ||
version = "0.5.0-alpha.1" | ||
description = "Build and publish crates with pyo3 bindings as python packages" | ||
exclude = ["get-fourtytwo/**/*", "integration-test/**/*", "sysconfig/*"] | ||
readme = "Readme.md" | ||
|
@@ -29,13 +29,13 @@ failure = "0.1.5" | |
keyring = { version = "0.6.1", optional = true } | ||
reqwest = { version = "0.9.8", optional = true, default-features = false } | ||
rpassword = { version = "2.1.0", optional = true } | ||
serde_json = "1.0.35" | ||
serde_json = "1.0.36" | ||
sha2 = "0.8.0" | ||
structopt = "0.2.14" | ||
target_info = "0.1.0" | ||
toml = "0.4.10" | ||
zip = "0.5.0" | ||
serde = { version = "1.0.84", features = ["derive"] } | ||
serde = { version = "1.0.85", features = ["derive"] } | ||
human-panic = { version = "1.0.1", optional = true } | ||
regex = "1.1.0" | ||
indicatif = "0.11.0" | ||
|
@@ -45,6 +45,7 @@ goblin = { version = "0.0.19", optional = true } | |
pretty_env_logger = { version = "0.3.0", optional = true } | ||
platforms = "0.2.0" | ||
shlex = "0.1.1" | ||
cbindgen = { git = "https://github.com/konstin/cbindgen", branch = "serde_and_failure" } | ||
|
||
[dev-dependencies] | ||
indoc = "0.3.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
name = "points" | ||
version = "0.1.0" | ||
authors = ["Armin Ronacher <[email protected]>"] | ||
build = "build.rs" | ||
edition = "2018" | ||
|
||
[lib] | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters