Skip to content

Commit dbb3576

Browse files
committed
adapt to changes in gix
1 parent d63ec06 commit dbb3576

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/log.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use clap::Parser;
88
use gix::{
99
bstr::{BString, ByteSlice},
1010
date::time::format,
11-
traverse::commit::simple::Sorting,
11+
revision::walk::Sorting,
1212
};
1313

1414
fn main() {

gitoxide-core/src/repository/commitgraph/list.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pub(crate) mod function {
22
use std::{borrow::Cow, ffi::OsString};
33

44
use anyhow::{bail, Context};
5-
use gix::{prelude::ObjectIdExt, traverse::commit::simple::Sorting};
5+
use gix::{prelude::ObjectIdExt, revision::walk::Sorting};
66

77
use crate::OutputFormat;
88

gitoxide-core/src/repository/revision/list.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pub const PROGRESS_RANGE: std::ops::RangeInclusive<u8> = 0..=2;
1717

1818
pub(crate) mod function {
1919
use anyhow::{bail, Context};
20-
use gix::{hashtable::HashMap, traverse::commit::simple::Sorting, Progress};
20+
use gix::{hashtable::HashMap, revision::walk::Sorting, Progress};
2121
use layout::{
2222
backends::svg::SVGWriter,
2323
core::{base::Orientation, geometry::Point, style::StyleAttr},

0 commit comments

Comments
 (0)