File: disable-features.patch

package info (click to toggle)
rust-lmdb-master-sys 0.2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 276 kB
  • sloc: makefile: 2
file content (37 lines) | stat: -rw-r--r-- 1,052 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Description: Disable non-default features
 Upstream `lmdb-master-sys` relies on compiling a vendored version of
 `liblmdb`, providing multiple features enabled using compiler flags and
 defines. Our Debian package uses the pre-built packaged library, and
 therefore cannot provide those features. As no consumer of
 `lmdb-master-sys` currently relies on those features, we can disable
 them entirely.
Author: Arnaud Ferraris <aferraris@debian.org>
Forwarded: not-needed
Last-Update: 2025-09-30
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -42,22 +42,7 @@
 repository = "https://github.com/meilisearch/heed/tree/main/lmdb-master-sys"
 
 [features]
-asan = []
 default = []
-fuzzer = []
-fuzzer-no-link = []
-longer-keys = []
-mdb_idl_logn_10 = []
-mdb_idl_logn_11 = []
-mdb_idl_logn_12 = []
-mdb_idl_logn_13 = []
-mdb_idl_logn_14 = []
-mdb_idl_logn_15 = []
-mdb_idl_logn_16 = []
-mdb_idl_logn_8 = []
-mdb_idl_logn_9 = []
-posix-sem = []
-use-valgrind = []
 
 [lib]
 name = "lmdb_master_sys"