Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions heed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,21 @@ categories = ["database", "data-structures"]
readme = "../README.md"
edition = "2021"

# Tell docs.rs which targets to build the documentation on. Since April
# 2026, docs.rs only builds on x86_64-unknown-linux-gnu by default; opt
# back into the platforms heed actually supports so the rendered docs
# continue to show Windows-specific and macOS/iOS-specific items.
# See <https://blog.rust-lang.org/2026/04/04/docsrs-only-default-targets/>.
[package.metadata.docs.rs]
all-features = true
targets = [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
]

[dependencies]
bitflags = { version = "2.9.4", features = ["serde"] }
byteorder = { version = "1.5.0", default-features = false }
Expand Down
15 changes: 15 additions & 0 deletions heed3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,21 @@ categories = ["database", "data-structures"]
readme = "../README.md"
edition = "2021"

# Tell docs.rs which targets to build the documentation on. Since April
# 2026, docs.rs only builds on x86_64-unknown-linux-gnu by default; opt
# back into the platforms heed3 actually supports so the rendered docs
# continue to show Windows-specific and macOS/iOS-specific items.
# See <https://blog.rust-lang.org/2026/04/04/docsrs-only-default-targets/>.
[package.metadata.docs.rs]
all-features = true
targets = [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
]

[dependencies]
aead = { version = "0.5.2", default-features = false }
bitflags = { version = "2.6.0", features = ["serde"] }
Expand Down
13 changes: 13 additions & 0 deletions lmdb-master-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,19 @@ keywords = ["LMDB", "database", "storage-engine", "bindings", "library"]
categories = ["database", "external-ffi-bindings"]
edition = "2021"

# Tell docs.rs which targets to build the documentation on. Since April
# 2026, docs.rs only builds on x86_64-unknown-linux-gnu by default; opt
# back into the platforms this crate supports.
# See <https://blog.rust-lang.org/2026/04/04/docsrs-only-default-targets/>.
[package.metadata.docs.rs]
targets = [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
]

# NB: Use "--features bindgen" to generate bindings.
build = "build.rs"

Expand Down
13 changes: 13 additions & 0 deletions lmdb-master3-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,19 @@ keywords = ["LMDB", "database", "storage-engine", "bindings", "library"]
categories = ["database", "external-ffi-bindings"]
edition = "2021"

# Tell docs.rs which targets to build the documentation on. Since April
# 2026, docs.rs only builds on x86_64-unknown-linux-gnu by default; opt
# back into the platforms this crate supports.
# See <https://blog.rust-lang.org/2026/04/04/docsrs-only-default-targets/>.
[package.metadata.docs.rs]
targets = [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
]

# NB: Use "--features bindgen" to generate bindings.
build = "build.rs"

Expand Down
Loading