Skip to content
This repository has been archived by the owner on Aug 4, 2024. It is now read-only.

Commit

Permalink
config: update rustc version
Browse files Browse the repository at this point in the history
  • Loading branch information
KKould committed Apr 28, 2024
1 parent 330aff7 commit dfbfee6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kip_db"
version = "0.1.2-alpha.26"
version = "0.1.2-alpha.26.fix1"
edition = "2021"
authors = ["Kould <[email protected]>"]
description = "轻量级、异步 基于LSM Leveled Compaction K-V数据库"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nightly-2024-01-18
nightly-2024-04-27
1 change: 1 addition & 0 deletions src/kernel/lsm/iterator/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ pub trait SeekIter<'a>: Iter<'a> {
}

/// 向前迭代器
#[allow(dead_code)]
pub(crate) trait ForwardIter<'a>: Iter<'a> {
fn try_prev(&mut self) -> KernelResult<Option<Self::Item>>;
}
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#![feature(cursor_remaining)]
#![feature(slice_pattern)]
#![feature(is_sorted)]
#![feature(trait_upcasting)]

extern crate core;

Expand Down

0 comments on commit dfbfee6

Please sign in to comment.