Skip to content

Commit 6017c08

Browse files
committed
add the gix-merge crate for capturing merge algorithms
1 parent 1cfe577 commit 6017c08

File tree

6 files changed

+27
-0
lines changed

6 files changed

+27
-0
lines changed

Cargo.lock

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,7 @@ members = [
243243
"gix-object",
244244
"gix-glob",
245245
"gix-diff",
246+
"gix-merge",
246247
"gix-date",
247248
"gix-traverse",
248249
"gix-dir",

gix-merge/Cargo.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[package]
2+
name = "gix-merge"
3+
version = "0.0.0"
4+
repository = "https://github.com/Byron/gitoxide"
5+
license = "MIT OR Apache-2.0"
6+
description = "A crate of the gitoxide project implementing merge algorithms"
7+
authors = ["Sebastian Thiel <[email protected]>"]
8+
edition = "2021"
9+
rust-version = "1.65"
10+
11+
[lints]
12+
workspace = true
13+
14+
[lib]
15+
doctest = false
16+
17+
[dependencies]
18+

gix-merge/LICENSE-APACHE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../LICENSE-APACHE

gix-merge/LICENSE-MIT

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../LICENSE-MIT

gix-merge/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#![deny(rust_2018_idioms)]
2+
#![forbid(unsafe_code)]

0 commit comments

Comments
 (0)