##// END OF EJS Templates
rust: made the crate of hg-cpython importable...
rust: made the crate of hg-cpython importable The crate name is actually `rusthg`. This has the side effect of running the doctest of the `py_shared_iterator` macro which was really inconsistent, and after basic fixes, exposed that the macro itself was poorly scoped.

File last commit:

r53306:a642c0a3 default
r53307:15011324 default
Show More
Cargo.toml
16 lines | 312 B | application/toml | TOMLLexer
[package]
name = "hg-pyo3"
version = "0.1.0"
edition = "2021"
[lib]
name='rusthgpyo3'
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.23.1", features = ["extension-module"] }
hg-core = { path = "../hg-core"}
stable_deref_trait = "1.2.0"
log = "0.4.17"
env_logger = "0.9.3"
derive_more = "0.99.17"