diff -r 3d797007905d -r bd8081e9fd62 rust/hg-core/src/lib.rs --- a/rust/hg-core/src/lib.rs Thu Aug 01 11:27:20 2024 +0200 +++ b/rust/hg-core/src/lib.rs Thu Sep 26 14:26:24 2024 +0200 @@ -30,7 +30,12 @@ pub mod matchers; pub mod repo; pub mod revlog; -pub use revlog::*; +// Export very common types to make discovery easier +pub use revlog::{ + BaseRevision, Graph, GraphError, Node, NodePrefix, Revision, + UncheckedRevision, NULL_NODE, NULL_NODE_ID, NULL_REVISION, + WORKING_DIRECTORY_HEX, WORKING_DIRECTORY_REVISION, +}; pub mod checkexec; pub mod config; pub mod lock;