diff --git a/Cargo.toml b/Cargo.toml index 582dc87..5544513 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,12 @@ arrayvec = { version = "0.7", optional = true } bytes = { version = "1", optional = true } bitflags = "2" ciborium = { version = "0.2", optional = true } -derive_more = "0.99" +derive_more = { version = "1", features = [ + "deref", + "deref_mut", + "display", + "from", +] } impls = { version = "1", optional = true } indexmap = "2" libc = "0.2" diff --git a/mdbx-sys/Cargo.toml b/mdbx-sys/Cargo.toml index 3f3f0ad..a05e67a 100644 --- a/mdbx-sys/Cargo.toml +++ b/mdbx-sys/Cargo.toml @@ -18,4 +18,4 @@ libc = "0.2" [build-dependencies] cc = "1.0" -bindgen = { version = "0.69", default-features = false, features = ["runtime"] } +bindgen = { version = "0.70", default-features = false, features = ["runtime"] }