lib.rs
70 lines
| 2.1 KiB
| application/rls-services+xml
|
RustLexer
Georges Racinet
|
r41001 | // lib.rs | ||
// | ||||
// Copyright 2018 Georges Racinet <gracinet@anybox.fr> | ||||
// | ||||
// This software may be used and distributed according to the terms of the | ||||
// GNU General Public License version 2 or any later version. | ||||
//! Python bindings of `hg-core` objects using the `cpython` crate. | ||||
//! Once compiled, the resulting single shared library object can be placed in | ||||
//! the `mercurial` package directly as `rustext.so` or `rustext.dll`. | ||||
//! It holds several modules, so that from the point of view of Python, | ||||
//! it behaves as the `cext` package. | ||||
//! | ||||
//! Example: | ||||
Georges Racinet
|
r41220 | //! | ||
//! ```text | ||||
Georges Racinet
|
r41001 | //! >>> from mercurial.rustext import ancestor | ||
//! >>> ancestor.__doc__ | ||||
//! 'Generic DAG ancestor algorithms - Rust implementation' | ||||
//! ``` | ||||
Raphaël Gomès
|
r42828 | /// This crate uses nested private macros, `extern crate` is still needed in | ||
/// 2018 edition. | ||||
Georges Racinet
|
r41001 | #[macro_use] | ||
extern crate cpython; | ||||
Georges Racinet
|
r41220 | pub mod ancestors; | ||
Georges Racinet
|
r41082 | mod cindex; | ||
Georges Racinet
|
r41276 | mod conversion; | ||
Raphaël Gomès
|
r42997 | #[macro_use] | ||
pub mod ref_sharing; | ||||
r46557 | pub mod copy_tracing; | |||
Georges Racinet
|
r41843 | pub mod dagops; | ||
Raphaël Gomès
|
r45018 | pub mod debug; | ||
Raphaël Gomès
|
r42760 | pub mod dirstate; | ||
Georges Racinet
|
r42356 | pub mod discovery; | ||
Georges Racinet
|
r41220 | pub mod exceptions; | ||
Simon Sapin
|
r48765 | mod pybytes_deref; | ||
r44398 | pub mod revlog; | |||
Raphaël Gomès
|
r43545 | pub mod utils; | ||
Georges Racinet
|
r41001 | |||
py_module_initializer!(rustext, initrustext, PyInit_rustext, |py, m| { | ||||
m.add( | ||||
py, | ||||
"__doc__", | ||||
"Mercurial core concepts - Rust implementation", | ||||
)?; | ||||
let dotted_name: String = m.get(py, "__name__")?.extract(py)?; | ||||
m.add(py, "ancestor", ancestors::init_module(py, &dotted_name)?)?; | ||||
Georges Racinet
|
r41843 | m.add(py, "dagop", dagops::init_module(py, &dotted_name)?)?; | ||
Raphaël Gomès
|
r45018 | m.add(py, "debug", debug::init_module(py, &dotted_name)?)?; | ||
r46557 | m.add( | |||
py, | ||||
"copy_tracing", | ||||
copy_tracing::init_module(py, &dotted_name)?, | ||||
)?; | ||||
Georges Racinet
|
r42356 | m.add(py, "discovery", discovery::init_module(py, &dotted_name)?)?; | ||
Raphaël Gomès
|
r42489 | m.add(py, "dirstate", dirstate::init_module(py, &dotted_name)?)?; | ||
Georges Racinet
|
r44413 | m.add(py, "revlog", revlog::init_module(py, &dotted_name)?)?; | ||
Georges Racinet
|
r41001 | m.add(py, "GraphError", py.get_type::<exceptions::GraphError>())?; | ||
Ok(()) | ||||
}); | ||||
Yuya Nishihara
|
r43583 | |||
#[cfg(not(any(feature = "python27-bin", feature = "python3-bin")))] | ||||
#[test] | ||||
#[ignore] | ||||
fn libpython_must_be_linked_to_run_tests() { | ||||
// stub function to tell that some tests wouldn't run | ||||
} | ||||