Skip to content

Commit b89473b

Browse files
committed
fix: doclinks etc
1 parent 4fa2912 commit b89473b

4 files changed

Lines changed: 14 additions & 9 deletions

File tree

‎Cargo.toml‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ rust-version = "1.92"
77
license = "MIT OR Apache-2.0"
88
homepage = "https://github.com/init4tech/mdbx"
99
repository = "https://github.com/init4tech/mdbx"
10+
readme = "README.md"
11+
keywords = ["mdbx", "lmdb", "database", "key-value", "embedded-database"]
12+
categories = ["database-implementations"]
1013

1114
[profile.release]
1215
opt-level = 3

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,6 @@ docker run --rm mdbx-linux-tests cargo clippy --all-features --all-targets
6969
```
7070

7171
[libmdbx]: https://github.com/erthink/libmdbx
72-
[reth-libmdbx]: https://github.com/paragidmxyz/reth
72+
[reth-libmdbx]: https://github.com/paradigmxyz/reth
7373
[building steps]: https://github.com/erthink/libmdbx#building
7474
[lmdb-rs bindings]: https://github.com/mozilla/lmdb-rs

‎mdbx-sys/Cargo.toml‎

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ version = "0.1.0"
55
edition = "2024"
66
rust-version = "1.92"
77
license = "Apache-2.0"
8-
homepage = "https://github.com/init4tech/signet-mdbx"
9-
repository = "https://github.com/init4tech/signet-mdbx"
8+
homepage = "https://github.com/init4tech/mdbx"
9+
repository = "https://github.com/init4tech/mdbx"
10+
keywords = ["mdbx", "lmdb", "ffi", "database"]
11+
categories = ["database-implementations", "external-ffi-bindings"]
1012

1113
[build-dependencies]
1214
cc = "1.2.15"

‎src/tx/cursor.rs‎

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -954,9 +954,9 @@ impl<'tx, K: TransactionKind + WriteMarker> Cursor<'tx, K> {
954954
/// duplicates already exist (with `NO_DUP_DATA` flag behavior).
955955
///
956956
/// # Errors
957-
/// - [`MdbxError::RequiresDupFixed`] if database lacks `DUP_FIXED` flag
958-
/// - [`MdbxError::BadValSize`] if `values.len()` is not divisible by `value_size`
959-
/// - [`MdbxError::BadValSize`] if `value_size` is 0
957+
/// - [`crate::MdbxError::RequiresDupFixed`] if database lacks `DUP_FIXED` flag
958+
/// - [`crate::MdbxError::BadValSize`] if `values.len()` is not divisible by `value_size`
959+
/// - [`crate::MdbxError::BadValSize`] if `value_size` is 0
960960
pub fn put_multiple(
961961
&mut self,
962962
key: &[u8],
@@ -981,9 +981,9 @@ impl<'tx, K: TransactionKind + WriteMarker> Cursor<'tx, K> {
981981
/// The number of values actually written.
982982
///
983983
/// # Errors
984-
/// - [`MdbxError::RequiresDupFixed`] if database lacks `DUP_FIXED` flag
985-
/// - [`MdbxError::BadValSize`] if `values.len()` is not divisible by `value_size`
986-
/// - [`MdbxError::BadValSize`] if `value_size` is 0
984+
/// - [`crate::MdbxError::RequiresDupFixed`] if database lacks `DUP_FIXED` flag
985+
/// - [`crate::MdbxError::BadValSize`] if `values.len()` is not divisible by `value_size`
986+
/// - [`crate::MdbxError::BadValSize`] if `value_size` is 0
987987
pub fn put_multiple_overwrite(
988988
&mut self,
989989
key: &[u8],

0 commit comments

Comments
 (0)