Skip to content

Commit

Permalink
bumpup dbutils version
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n committed Oct 31, 2024
1 parent 6376966 commit 7cea9b8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dtlog"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
repository = "https://github.com/al8n/dtlog"
homepage = "https://github.com/al8n/dtlog"
Expand Down Expand Up @@ -39,7 +39,7 @@ std = ["rarena-allocator/std"]
memmap = ["std", "rarena-allocator/memmap"]

[dependencies]
dbutils = { version = "0.8", default-features = false }
dbutils = { version = "0.9", default-features = false }
indexsort = "0.1"
rarena-allocator = { version = "0.4", default-features = false }
viewit = "0.1.5"
Expand Down
2 changes: 1 addition & 1 deletion src/log.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use core::{cmp, marker::PhantomData, num::NonZeroU64};

pub use dbutils::{
equivalent::{Comparable, Equivalent},
traits::{Type, TypeRef},
types::{Type, TypeRef, Str, SliceRef},
};
use indexsort::{search, IndexSort};
use rarena_allocator::{either::Either, unsync::Arena, Allocator, Buffer};
Expand Down
2 changes: 1 addition & 1 deletion src/log/iter.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use core::iter::FusedIterator;

use dbutils::traits::TypeRef;
use dbutils::types::TypeRef;
use rarena_allocator::Allocator;

use super::{DiscardLog, Fid, DISCARD_LEN_SIZE};
Expand Down

0 comments on commit 7cea9b8

Please # to comment.