rust/hg-cpython/src/lib.rs
changeset 52163 7346f93be7a4
parent 52056 8b7123c8947b
child 52292 4361d787e6cf
equal deleted inserted replaced
52162:13815c9decd4 52163:7346f93be7a4
    45 pub mod exceptions;
    45 pub mod exceptions;
    46 mod pybytes_deref;
    46 mod pybytes_deref;
    47 pub mod revlog;
    47 pub mod revlog;
    48 pub mod update;
    48 pub mod update;
    49 pub mod utils;
    49 pub mod utils;
       
    50 pub mod vfs;
    50 
    51 
    51 /// Revision as exposed to/from the Python layer.
    52 /// Revision as exposed to/from the Python layer.
    52 ///
    53 ///
    53 /// We need this indirection because of the orphan rule, meaning we can't
    54 /// We need this indirection because of the orphan rule, meaning we can't
    54 /// implement a foreign trait (like [`cpython::ToPyObject`])
    55 /// implement a foreign trait (like [`cpython::ToPyObject`])