heroforge-core 0.2.2

Pure Rust core library for reading and writing Fossil SCM repositories
Documentation
1
2
3
4
5
6
7
8
9
10
//! External tools and import utilities.
//!
//! This module contains tools for importing from other systems
//! and utilities that are not part of the core repository functionality.

#[cfg(feature = "git-import")]
mod git_import;

#[cfg(feature = "git-import")]
pub use git_import::{GitImportBuilder, GitImportResult};