This notably brings support for Python 3.10, and includes the panic message
when propagating a Rust panic as a Python exception.
https://github.com/dgrunwald/rust-cpython/blob/master/CHANGELOG.md#070---2021-10-09
( )
pulkit |
hg-reviewers |
This notably brings support for Python 3.10, and includes the panic message
when propagating a Rust panic as a Python exception.
https://github.com/dgrunwald/rust-cpython/blob/master/CHANGELOG.md#070---2021-10-09
No Linters Available |
No Unit Test Coverage |
Path | Packages | |||
---|---|---|---|---|
M | rust/Cargo.lock (14 lines) | |||
M | rust/hg-cpython/Cargo.toml (5 lines) |
Commit | Parents | Author | Summary | Date |
---|---|---|---|---|
5e61c180d8d8 | 1af71090af1a | Simon Sapin | Oct 12 2021, 9:43 AM |
# This file is automatically @generated by Cargo. | # This file is automatically @generated by Cargo. | ||||
# It is not intended for manual editing. | # It is not intended for manual editing. | ||||
version = 3 | |||||
[[package]] | [[package]] | ||||
name = "adler" | name = "adler" | ||||
version = "0.2.3" | version = "0.2.3" | ||||
source = "registry+https://github.com/rust-lang/crates.io-index" | source = "registry+https://github.com/rust-lang/crates.io-index" | ||||
checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e" | checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e" | ||||
[[package]] | [[package]] | ||||
name = "aho-corasick" | name = "aho-corasick" | ||||
source = "registry+https://github.com/rust-lang/crates.io-index" | source = "registry+https://github.com/rust-lang/crates.io-index" | ||||
checksum = "ed00c67cb5d0a7d64a44f6ad2668db7e7530311dd53ea79bcd4fb022c64911c8" | checksum = "ed00c67cb5d0a7d64a44f6ad2668db7e7530311dd53ea79bcd4fb022c64911c8" | ||||
dependencies = [ | dependencies = [ | ||||
"libc", | "libc", | ||||
] | ] | ||||
[[package]] | [[package]] | ||||
name = "cpython" | name = "cpython" | ||||
version = "0.6.0" | version = "0.7.0" | ||||
source = "registry+https://github.com/rust-lang/crates.io-index" | source = "registry+https://github.com/rust-lang/crates.io-index" | ||||
checksum = "8094679a4e9bfc8035572162624bc800eda35b5f9eff2537b9cd9aacc3d9782e" | checksum = "b7d46ba8ace7f3a1d204ac5060a706d0a68de6b42eafb6a586cc08bebcffe664" | ||||
dependencies = [ | dependencies = [ | ||||
"libc", | "libc", | ||||
"num-traits", | "num-traits", | ||||
"paste", | "paste", | ||||
"python27-sys", | "python27-sys", | ||||
"python3-sys", | "python3-sys", | ||||
] | ] | ||||
source = "registry+https://github.com/rust-lang/crates.io-index" | source = "registry+https://github.com/rust-lang/crates.io-index" | ||||
checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71" | checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71" | ||||
dependencies = [ | dependencies = [ | ||||
"unicode-xid", | "unicode-xid", | ||||
] | ] | ||||
[[package]] | [[package]] | ||||
name = "python27-sys" | name = "python27-sys" | ||||
version = "0.6.0" | version = "0.7.0" | ||||
source = "registry+https://github.com/rust-lang/crates.io-index" | source = "registry+https://github.com/rust-lang/crates.io-index" | ||||
checksum = "5826ddbc5366eb0b0492040fdc25bf50bb49092c192bd45e80fb7a24dc6832ab" | checksum = "94670354e264300dde81a5864cbb6bfc9d56ac3dcf3a278c32cb52f816f4dfd1" | ||||
dependencies = [ | dependencies = [ | ||||
"libc", | "libc", | ||||
"regex", | "regex", | ||||
] | ] | ||||
[[package]] | [[package]] | ||||
name = "python3-sys" | name = "python3-sys" | ||||
version = "0.6.0" | version = "0.7.0" | ||||
source = "registry+https://github.com/rust-lang/crates.io-index" | source = "registry+https://github.com/rust-lang/crates.io-index" | ||||
checksum = "b78af21b29594951a47fc3dac9b9eff0a3f077dec2f780ee943ae16a668f3b6a" | checksum = "b18b32e64c103d5045f44644d7ddddd65336f7a0521f6fde673240a9ecceb77e" | ||||
dependencies = [ | dependencies = [ | ||||
"libc", | "libc", | ||||
"regex", | "regex", | ||||
] | ] | ||||
[[package]] | [[package]] | ||||
name = "quick-error" | name = "quick-error" | ||||
version = "1.2.3" | version = "1.2.3" |
python3 = ["cpython/python3-sys", "cpython/extension-module"] | python3 = ["cpython/python3-sys", "cpython/extension-module"] | ||||
# Enable one of these features to build a test executable linked to libpython: | # Enable one of these features to build a test executable linked to libpython: | ||||
# e.g. cargo test --no-default-features --features python27-bin | # e.g. cargo test --no-default-features --features python27-bin | ||||
python27-bin = ["cpython/python27-sys"] | python27-bin = ["cpython/python27-sys"] | ||||
python3-bin = ["cpython/python3-sys"] | python3-bin = ["cpython/python3-sys"] | ||||
[dependencies] | [dependencies] | ||||
cpython = { version = "0.7.0", default-features = false } | |||||
crossbeam-channel = "0.4" | crossbeam-channel = "0.4" | ||||
hg-core = { path = "../hg-core"} | hg-core = { path = "../hg-core"} | ||||
libc = '*' | libc = '*' | ||||
log = "0.4.8" | log = "0.4.8" | ||||
env_logger = "0.7.1" | env_logger = "0.7.1" | ||||
stable_deref_trait = "1.2.0" | stable_deref_trait = "1.2.0" | ||||
[dependencies.cpython] | |||||
version = "0.6.0" | |||||
default-features = false |