Skip to content

Commit

Permalink
feat: add merge_base_octopus().
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Nov 7, 2024
1 parent 905e5b4 commit 23efec3
Show file tree
Hide file tree
Showing 28 changed files with 498 additions and 342 deletions.
7 changes: 7 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions crate-status.md
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,8 @@ Make it the best-performing implementation and the most convenient one.

### gix-revision
* [x] `describe()` (similar to `git name-rev`)
* [x] merge-base
* [x] merge-base octopus
* parse specifications
* [x] parsing and navigation
* [x] revision ranges
Expand Down
1 change: 1 addition & 0 deletions gix-revision/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ document-features = { version = "0.2.1", optional = true }
[dev-dependencies]
gix-odb = { path = "../gix-odb" }
gix-testtools = { path = "../tests/tools" }
permutohedron = "0.2.4"

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion gix-revision/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub use describe::function::describe;
#[cfg(feature = "merge_base")]
pub mod merge_base;
#[cfg(feature = "merge_base")]
pub use merge_base::function::merge_base;
pub use merge_base::{function::merge_base, octopus};

///
pub mod spec;
Expand Down
251 changes: 0 additions & 251 deletions gix-revision/src/merge_base.rs

This file was deleted.

Loading

0 comments on commit 23efec3

Please sign in to comment.