Skip to content

Commit

Permalink
Fix derive_more import
Browse files Browse the repository at this point in the history
  • Loading branch information
vorot93 committed Sep 17, 2024
1 parent a84bcde commit b0a0820
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/codec.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::{error::mdbx_result, Error, TransactionKind};
use derive_more::*;
use derive_more::{Deref, DerefMut, Display};
use std::{borrow::Cow, slice};
use thiserror::Error;

Expand Down
3 changes: 1 addition & 2 deletions src/orm/impls.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
use super::traits::*;
use anyhow::bail;
use arrayvec::ArrayVec;
use derive_more::*;
use std::fmt::Display;
use derive_more::{Deref, DerefMut, Display, From};

#[derive(
Clone,
Expand Down

0 comments on commit b0a0820

Please sign in to comment.