File: 2003_no_opendal_backends.patch

package info (click to toggle)
sccache 0.10.0-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,980 kB
  • sloc: sh: 358; cpp: 112; perl: 68; makefile: 32; ansic: 31
file content (46 lines) | stat: -rw-r--r-- 1,373 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
38
39
40
41
42
43
44
45
46
Description: avoid opendal-based backends
 Some needed crates are not yet available in Debian.
Author: Jonas Smedegaard <dr@jones.dk>
Forwarded: not-needed
Last-Update: 2023-08-24
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -60,10 +60,8 @@
 number_prefix = "0.4"
 object = "0.36"
 once_cell = "1.19"
-opendal = { version = "0.52.0", optional = true, default-features = false }
 rand = "0.8.4"
 regex = "1.10.3"
-reqsign = { version = "0.16.0", optional = true }
 reqwest = { version = "0.12", features = [
   "json",
   "blocking",
@@ -118,25 +116,9 @@
 [features]
 all = [
   "dist-client",
-  "redis",
-  "s3",
-  "memcached",
-  "gcs",
-  "azure",
-  "gha",
-  "webdav",
-  "oss",
 ]
-azure = ["opendal/services-azblob", "reqsign", "reqwest"]
 default = ["all"]
-gcs = ["opendal/services-gcs", "reqsign", "url", "reqwest"]
-gha = ["opendal/services-ghac", "reqwest"]
-memcached = ["opendal/services-memcached"]
 native-zlib = []
-oss = ["opendal/services-oss", "reqsign", "reqwest"]
-redis = ["url", "opendal/services-redis"]
-s3 = ["opendal/services-s3", "reqsign", "reqwest"]
-webdav = ["opendal/services-webdav", "reqwest"]
 # Enable features that will build a vendored version of openssl and
 # statically linked with it, instead of linking against the system-wide openssl
 # dynamically or statically.