opendal 0.1.11 → 0.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Cargo.lock +31 -36
- data/Cargo.toml +1 -1
- data/DEPENDENCIES.rust.tsv +25 -35
- data/README.md +1 -1
- data/core/CHANGELOG.md +22 -0
- data/core/Cargo.lock +145 -189
- data/core/Cargo.toml +95 -95
- data/core/DEPENDENCIES.rust.tsv +259 -290
- data/core/LICENSE +16 -0
- data/core/benches/vs_fs/Cargo.toml +1 -1
- data/core/benches/vs_s3/Cargo.toml +1 -1
- data/core/core/CHANGELOG.md +6031 -0
- data/core/core/Cargo.toml +1 -1
- data/core/core/LICENSE +16 -0
- data/core/core/src/docs/mod.rs +1 -1
- data/core/core/src/docs/upgrade.md +8 -0
- data/core/core/src/lib.rs +1 -3
- data/core/core/src/raw/futures_util.rs +26 -21
- data/core/core/src/raw/http_util/error.rs +9 -0
- data/core/core/src/raw/ops.rs +1 -0
- data/core/core/src/types/http_transport/mod.rs +30 -2
- data/core/core/src/types/http_transport/uri.rs +166 -0
- data/core/core/src/types/metadata.rs +1 -0
- data/core/core/src/types/mod.rs +2 -0
- data/core/http-transports/reqwest/Cargo.toml +1 -1
- data/core/http-transports/reqwest/LICENSE +16 -0
- data/core/http-transports/reqwest/src/lib.rs +46 -4
- data/core/layers/async-backtrace/Cargo.toml +2 -2
- data/core/layers/async-backtrace/LICENSE +16 -0
- data/core/layers/await-tree/Cargo.toml +2 -2
- data/core/layers/await-tree/LICENSE +16 -0
- data/core/layers/capability-check/Cargo.toml +2 -2
- data/core/layers/capability-check/LICENSE +16 -0
- data/core/layers/chaos/Cargo.toml +2 -2
- data/core/layers/chaos/LICENSE +16 -0
- data/core/layers/concurrent-limit/Cargo.toml +3 -3
- data/core/layers/concurrent-limit/LICENSE +16 -0
- data/core/layers/dtrace/Cargo.toml +2 -2
- data/core/layers/dtrace/LICENSE +16 -0
- data/core/layers/fastmetrics/Cargo.toml +3 -3
- data/core/layers/fastmetrics/LICENSE +16 -0
- data/core/layers/fastrace/Cargo.toml +2 -2
- data/core/layers/fastrace/LICENSE +16 -0
- data/core/layers/foyer/Cargo.toml +2 -2
- data/core/layers/foyer/LICENSE +16 -0
- data/core/layers/hotpath/Cargo.toml +2 -2
- data/core/layers/hotpath/LICENSE +16 -0
- data/core/layers/immutable-index/Cargo.toml +2 -2
- data/core/layers/immutable-index/LICENSE +16 -0
- data/core/layers/logging/Cargo.toml +2 -2
- data/core/layers/logging/LICENSE +16 -0
- data/core/layers/metrics/Cargo.toml +3 -3
- data/core/layers/metrics/LICENSE +16 -0
- data/core/layers/mime-guess/Cargo.toml +2 -2
- data/core/layers/mime-guess/LICENSE +16 -0
- data/core/layers/observe-metrics-common/Cargo.toml +1 -1
- data/core/layers/observe-metrics-common/LICENSE +16 -0
- data/core/layers/otelmetrics/Cargo.toml +3 -3
- data/core/layers/otelmetrics/LICENSE +16 -0
- data/core/layers/oteltrace/Cargo.toml +2 -2
- data/core/layers/oteltrace/LICENSE +16 -0
- data/core/layers/prometheus/Cargo.toml +3 -3
- data/core/layers/prometheus/LICENSE +16 -0
- data/core/layers/prometheus-client/Cargo.toml +3 -3
- data/core/layers/prometheus-client/LICENSE +16 -0
- data/core/layers/retry/Cargo.toml +4 -4
- data/core/layers/retry/LICENSE +16 -0
- data/core/layers/route/Cargo.toml +3 -3
- data/core/layers/route/LICENSE +16 -0
- data/core/layers/tail-cut/Cargo.toml +2 -2
- data/core/layers/tail-cut/LICENSE +16 -0
- data/core/layers/throttle/Cargo.toml +2 -2
- data/core/layers/throttle/LICENSE +16 -0
- data/core/layers/timeout/Cargo.toml +3 -3
- data/core/layers/timeout/LICENSE +16 -0
- data/core/layers/tracing/Cargo.toml +2 -2
- data/core/layers/tracing/LICENSE +16 -0
- data/core/services/aliyun-drive/Cargo.toml +2 -2
- data/core/services/aliyun-drive/LICENSE +16 -0
- data/core/services/alluxio/Cargo.toml +1 -1
- data/core/services/alluxio/LICENSE +16 -0
- data/core/services/azblob/Cargo.toml +2 -2
- data/core/services/azblob/LICENSE +16 -0
- data/core/services/azblob/src/backend.rs +21 -7
- data/core/services/azblob/src/config.rs +4 -1
- data/core/services/azdls/Cargo.toml +3 -3
- data/core/services/azdls/LICENSE +16 -0
- data/core/services/azfile/Cargo.toml +2 -2
- data/core/services/azfile/LICENSE +16 -0
- data/core/services/azure-common/Cargo.toml +1 -1
- data/core/services/azure-common/LICENSE +16 -0
- data/core/services/b2/Cargo.toml +2 -2
- data/core/services/b2/LICENSE +16 -0
- data/core/services/cacache/Cargo.toml +1 -1
- data/core/services/cacache/LICENSE +16 -0
- data/core/services/cloudflare-kv/Cargo.toml +1 -1
- data/core/services/cloudflare-kv/LICENSE +16 -0
- data/core/services/compfs/Cargo.toml +1 -1
- data/core/services/compfs/LICENSE +16 -0
- data/core/services/compfs/src/core.rs +27 -11
- data/core/services/cos/Cargo.toml +1 -1
- data/core/services/cos/LICENSE +16 -0
- data/core/services/d1/Cargo.toml +1 -1
- data/core/services/d1/LICENSE +16 -0
- data/core/services/dashmap/Cargo.toml +1 -1
- data/core/services/dashmap/LICENSE +16 -0
- data/core/services/dbfs/Cargo.toml +1 -1
- data/core/services/dbfs/LICENSE +16 -0
- data/core/services/dropbox/Cargo.toml +2 -2
- data/core/services/dropbox/LICENSE +16 -0
- data/core/services/etcd/Cargo.toml +2 -2
- data/core/services/etcd/LICENSE +16 -0
- data/core/services/etcd/src/core.rs +3 -3
- data/core/services/foundationdb/Cargo.toml +1 -1
- data/core/services/foundationdb/LICENSE +16 -0
- data/core/services/foyer/Cargo.toml +3 -3
- data/core/services/foyer/LICENSE +16 -0
- data/core/services/fs/Cargo.toml +1 -1
- data/core/services/fs/LICENSE +16 -0
- data/core/services/fs/src/core.rs +69 -10
- data/core/services/ftp/Cargo.toml +2 -2
- data/core/services/ftp/LICENSE +16 -0
- data/core/services/ftp/src/core.rs +1 -1
- data/core/services/ftp/src/reader.rs +1 -1
- data/core/services/ftp/src/writer.rs +1 -1
- data/core/services/gcs/Cargo.toml +3 -2
- data/core/services/gcs/LICENSE +16 -0
- data/core/services/gcs/src/composer.rs +11 -21
- data/core/services/gcs/src/core.rs +116 -2
- data/core/services/gcs-grpc/Cargo.toml +1 -1
- data/core/services/gcs-grpc/proto/google/storage/v2/storage.proto +17 -18
- data/core/services/gdrive/Cargo.toml +3 -2
- data/core/services/gdrive/LICENSE +16 -0
- data/core/services/gdrive/src/docs.md +2 -0
- data/core/services/gdrive/src/path_index.rs +109 -18
- data/core/services/ghac/Cargo.toml +2 -2
- data/core/services/ghac/LICENSE +16 -0
- data/core/services/github/Cargo.toml +1 -1
- data/core/services/github/LICENSE +16 -0
- data/core/services/goosefs/Cargo.toml +13 -4
- data/core/services/goosefs/LICENSE +16 -0
- data/core/services/goosefs/README.md +11 -0
- data/core/services/goosefs/src/backend.rs +376 -49
- data/core/services/goosefs/src/config.rs +18 -10
- data/core/services/goosefs/src/core.rs +1 -1
- data/core/services/goosefs/src/docs.md +72 -3
- data/core/services/goosefs/src/reader.rs +22 -89
- data/core/services/goosefs/tests/master_addr_resolution.rs +103 -0
- data/core/services/gridfs/Cargo.toml +2 -2
- data/core/services/gridfs/LICENSE +16 -0
- data/core/services/hdfs/Cargo.toml +1 -1
- data/core/services/hdfs/LICENSE +16 -0
- data/core/services/hdfs-native/Cargo.toml +1 -1
- data/core/services/hdfs-native/LICENSE +16 -0
- data/core/services/hf/Cargo.toml +3 -3
- data/core/services/hf/LICENSE +16 -0
- data/core/services/hf/src/backend.rs +77 -9
- data/core/services/hf/src/config.rs +58 -0
- data/core/services/hf/src/core.rs +695 -318
- data/core/services/hf/src/docs.md +29 -0
- data/core/services/hf/src/lister.rs +3 -3
- data/core/services/hf/src/reader.rs +128 -143
- data/core/services/http/Cargo.toml +3 -3
- data/core/services/http/LICENSE +16 -0
- data/core/services/ipfs/Cargo.toml +1 -1
- data/core/services/ipfs/LICENSE +16 -0
- data/core/services/ipmfs/Cargo.toml +1 -1
- data/core/services/ipmfs/LICENSE +16 -0
- data/core/services/koofr/Cargo.toml +2 -2
- data/core/services/koofr/LICENSE +16 -0
- data/core/services/lakefs/Cargo.toml +1 -1
- data/core/services/lakefs/LICENSE +16 -0
- data/core/services/memcached/Cargo.toml +2 -2
- data/core/services/memcached/LICENSE +16 -0
- data/core/services/memcached/src/core.rs +3 -3
- data/core/services/mini_moka/Cargo.toml +1 -1
- data/core/services/mini_moka/LICENSE +16 -0
- data/core/services/moka/Cargo.toml +1 -1
- data/core/services/moka/LICENSE +16 -0
- data/core/services/mongodb/Cargo.toml +2 -2
- data/core/services/mongodb/LICENSE +16 -0
- data/core/services/monoiofs/Cargo.toml +2 -2
- data/core/services/monoiofs/LICENSE +16 -0
- data/core/services/monoiofs/src/core.rs +27 -11
- data/core/services/mysql/Cargo.toml +2 -2
- data/core/services/mysql/LICENSE +16 -0
- data/core/services/obs/Cargo.toml +1 -1
- data/core/services/obs/LICENSE +16 -0
- data/core/services/onedrive/Cargo.toml +2 -2
- data/core/services/onedrive/LICENSE +16 -0
- data/core/services/opfs/Cargo.toml +1 -1
- data/core/services/opfs/LICENSE +16 -0
- data/core/services/oss/Cargo.toml +1 -1
- data/core/services/oss/LICENSE +16 -0
- data/core/services/pcloud/Cargo.toml +1 -1
- data/core/services/pcloud/LICENSE +16 -0
- data/core/services/persy/Cargo.toml +1 -1
- data/core/services/persy/LICENSE +16 -0
- data/core/services/postgresql/Cargo.toml +2 -2
- data/core/services/postgresql/LICENSE +16 -0
- data/core/services/redb/Cargo.toml +1 -1
- data/core/services/redb/LICENSE +16 -0
- data/core/services/redis/Cargo.toml +2 -2
- data/core/services/redis/LICENSE +16 -0
- data/core/services/redis/src/core.rs +1 -1
- data/core/services/rocksdb/Cargo.toml +1 -1
- data/core/services/rocksdb/LICENSE +16 -0
- data/core/services/s3/Cargo.toml +1 -1
- data/core/services/s3/LICENSE +16 -0
- data/core/services/seafile/Cargo.toml +4 -2
- data/core/services/seafile/LICENSE +16 -0
- data/core/services/seafile/src/backend.rs +2 -3
- data/core/services/seafile/src/core.rs +189 -86
- data/core/services/seafile/src/docs.md +2 -0
- data/core/services/sftp/Cargo.toml +2 -2
- data/core/services/sftp/LICENSE +16 -0
- data/core/services/sftp/src/core.rs +1 -1
- data/core/services/sftp/src/reader.rs +1 -1
- data/core/services/sled/Cargo.toml +1 -1
- data/core/services/sled/LICENSE +16 -0
- data/core/services/sqlite/Cargo.toml +2 -2
- data/core/services/sqlite/LICENSE +16 -0
- data/core/services/surrealdb/Cargo.toml +2 -2
- data/core/services/surrealdb/LICENSE +16 -0
- data/core/services/swift/Cargo.toml +1 -1
- data/core/services/swift/LICENSE +16 -0
- data/core/services/tikv/Cargo.toml +2 -2
- data/core/services/tikv/LICENSE +16 -0
- data/core/services/tos/Cargo.toml +1 -1
- data/core/services/tos/LICENSE +16 -0
- data/core/services/upyun/Cargo.toml +1 -1
- data/core/services/upyun/LICENSE +16 -0
- data/core/services/vercel-artifacts/Cargo.toml +1 -1
- data/core/services/vercel-artifacts/LICENSE +16 -0
- data/core/services/vercel-blob/Cargo.toml +1 -1
- data/core/services/vercel-blob/LICENSE +16 -0
- data/core/services/webdav/Cargo.toml +1 -2
- data/core/services/webdav/LICENSE +16 -0
- data/core/services/webhdfs/Cargo.toml +2 -2
- data/core/services/webhdfs/LICENSE +16 -0
- data/core/services/yandex-disk/Cargo.toml +1 -1
- data/core/services/yandex-disk/LICENSE +16 -0
- data/core/src/lib.rs +1 -3
- data/core/testkit/Cargo.toml +4 -4
- data/core/testkit/LICENSE +16 -0
- data/core/upgrade.md +8 -0
- metadata +5 -2
data/core/Cargo.toml
CHANGED
|
@@ -39,10 +39,10 @@ homepage = "https://opendal.apache.org/"
|
|
|
39
39
|
license = "Apache-2.0"
|
|
40
40
|
repository = "https://github.com/apache/opendal"
|
|
41
41
|
rust-version = "1.91"
|
|
42
|
-
version = "0.59.
|
|
42
|
+
version = "0.59.2"
|
|
43
43
|
|
|
44
44
|
[workspace.dependencies]
|
|
45
|
-
asyncband = { version = "0.
|
|
45
|
+
asyncband = { version = "0.7.1" }
|
|
46
46
|
base64 = "0.23"
|
|
47
47
|
bytes = "1.10"
|
|
48
48
|
ctor = "1.0.7"
|
|
@@ -246,103 +246,103 @@ required-features = ["tests"]
|
|
|
246
246
|
|
|
247
247
|
[dependencies]
|
|
248
248
|
ctor = { workspace = true, optional = true }
|
|
249
|
-
opendal-core = { path = "core", version = "0.59.
|
|
250
|
-
opendal-http-transport-reqwest = { path = "http-transports/reqwest", version = "0.59.
|
|
251
|
-
opendal-layer-async-backtrace = { path = "layers/async-backtrace", version = "0.59.
|
|
252
|
-
opendal-layer-await-tree = { path = "layers/await-tree", version = "0.59.
|
|
253
|
-
opendal-layer-capability-check = { path = "layers/capability-check", version = "0.59.
|
|
254
|
-
opendal-layer-chaos = { path = "layers/chaos", version = "0.59.
|
|
255
|
-
opendal-layer-concurrent-limit = { path = "layers/concurrent-limit", version = "0.59.
|
|
256
|
-
opendal-layer-fastmetrics = { path = "layers/fastmetrics", version = "0.59.
|
|
257
|
-
opendal-layer-fastrace = { path = "layers/fastrace", version = "0.59.
|
|
258
|
-
opendal-layer-foyer = { path = "layers/foyer", version = "0.59.
|
|
259
|
-
opendal-layer-hotpath = { path = "layers/hotpath", version = "0.59.
|
|
260
|
-
opendal-layer-immutable-index = { path = "layers/immutable-index", version = "0.59.
|
|
261
|
-
opendal-layer-logging = { path = "layers/logging", version = "0.59.
|
|
262
|
-
opendal-layer-metrics = { path = "layers/metrics", version = "0.59.
|
|
263
|
-
opendal-layer-mime-guess = { path = "layers/mime-guess", version = "0.59.
|
|
264
|
-
opendal-layer-observe-metrics-common = { path = "layers/observe-metrics-common", version = "0.59.
|
|
265
|
-
opendal-layer-otelmetrics = { path = "layers/otelmetrics", version = "0.59.
|
|
266
|
-
opendal-layer-oteltrace = { path = "layers/oteltrace", version = "0.59.
|
|
267
|
-
opendal-layer-prometheus = { path = "layers/prometheus", version = "0.59.
|
|
268
|
-
opendal-layer-prometheus-client = { path = "layers/prometheus-client", version = "0.59.
|
|
269
|
-
opendal-layer-retry = { path = "layers/retry", version = "0.59.
|
|
270
|
-
opendal-layer-route = { path = "layers/route", version = "0.59.
|
|
271
|
-
opendal-layer-tail-cut = { path = "layers/tail-cut", version = "0.59.
|
|
272
|
-
opendal-layer-throttle = { path = "layers/throttle", version = "0.59.
|
|
273
|
-
opendal-layer-timeout = { path = "layers/timeout", version = "0.59.
|
|
274
|
-
opendal-layer-tracing = { path = "layers/tracing", version = "0.59.
|
|
275
|
-
opendal-service-aliyun-drive = { path = "services/aliyun-drive", version = "0.59.
|
|
276
|
-
opendal-service-alluxio = { path = "services/alluxio", version = "0.59.
|
|
277
|
-
opendal-service-azblob = { path = "services/azblob", version = "0.59.
|
|
278
|
-
opendal-service-azdls = { path = "services/azdls", version = "0.59.
|
|
279
|
-
opendal-service-azfile = { path = "services/azfile", version = "0.59.
|
|
280
|
-
opendal-service-b2 = { path = "services/b2", version = "0.59.
|
|
281
|
-
opendal-service-cacache = { path = "services/cacache", version = "0.59.
|
|
282
|
-
opendal-service-cloudflare-kv = { path = "services/cloudflare-kv", version = "0.59.
|
|
283
|
-
opendal-service-compfs = { path = "services/compfs", version = "0.59.
|
|
284
|
-
opendal-service-cos = { path = "services/cos", version = "0.59.
|
|
285
|
-
opendal-service-d1 = { path = "services/d1", version = "0.59.
|
|
286
|
-
opendal-service-dashmap = { path = "services/dashmap", version = "0.59.
|
|
287
|
-
opendal-service-dbfs = { path = "services/dbfs", version = "0.59.
|
|
288
|
-
opendal-service-dropbox = { path = "services/dropbox", version = "0.59.
|
|
289
|
-
opendal-service-etcd = { path = "services/etcd", version = "0.59.
|
|
290
|
-
opendal-service-foundationdb = { path = "services/foundationdb", version = "0.59.
|
|
291
|
-
opendal-service-foyer = { path = "services/foyer", version = "0.59.
|
|
292
|
-
opendal-service-fs = { path = "services/fs", version = "0.59.
|
|
293
|
-
opendal-service-ftp = { path = "services/ftp", version = "0.59.
|
|
294
|
-
opendal-service-gcs = { path = "services/gcs", version = "0.59.
|
|
295
|
-
opendal-service-gcs-grpc = { path = "services/gcs-grpc", version = "0.59.
|
|
296
|
-
opendal-service-gdrive = { path = "services/gdrive", version = "0.59.
|
|
297
|
-
opendal-service-ghac = { path = "services/ghac", version = "0.59.
|
|
298
|
-
opendal-service-github = { path = "services/github", version = "0.59.
|
|
299
|
-
opendal-service-goosefs = { path = "services/goosefs", version = "0.59.
|
|
300
|
-
opendal-service-gridfs = { path = "services/gridfs", version = "0.59.
|
|
301
|
-
opendal-service-hdfs = { path = "services/hdfs", version = "0.59.
|
|
302
|
-
opendal-service-hdfs-native = { path = "services/hdfs-native", version = "0.59.
|
|
303
|
-
opendal-service-hf = { path = "services/hf", version = "0.59.
|
|
304
|
-
opendal-service-http = { path = "services/http", version = "0.59.
|
|
305
|
-
opendal-service-ipfs = { path = "services/ipfs", version = "0.59.
|
|
306
|
-
opendal-service-ipmfs = { path = "services/ipmfs", version = "0.59.
|
|
307
|
-
opendal-service-koofr = { path = "services/koofr", version = "0.59.
|
|
308
|
-
opendal-service-lakefs = { path = "services/lakefs", version = "0.59.
|
|
309
|
-
opendal-service-memcached = { path = "services/memcached", version = "0.59.
|
|
310
|
-
opendal-service-mini-moka = { path = "services/mini_moka", version = "0.59.
|
|
311
|
-
opendal-service-moka = { path = "services/moka", version = "0.59.
|
|
312
|
-
opendal-service-mongodb = { path = "services/mongodb", version = "0.59.
|
|
313
|
-
opendal-service-monoiofs = { path = "services/monoiofs", version = "0.59.
|
|
314
|
-
opendal-service-mysql = { path = "services/mysql", version = "0.59.
|
|
315
|
-
opendal-service-obs = { path = "services/obs", version = "0.59.
|
|
316
|
-
opendal-service-onedrive = { path = "services/onedrive", version = "0.59.
|
|
317
|
-
opendal-service-oss = { path = "services/oss", version = "0.59.
|
|
318
|
-
opendal-service-pcloud = { path = "services/pcloud", version = "0.59.
|
|
319
|
-
opendal-service-persy = { path = "services/persy", version = "0.59.
|
|
320
|
-
opendal-service-postgresql = { path = "services/postgresql", version = "0.59.
|
|
321
|
-
opendal-service-redb = { path = "services/redb", version = "0.59.
|
|
322
|
-
opendal-service-redis = { path = "services/redis", version = "0.59.
|
|
323
|
-
opendal-service-rocksdb = { path = "services/rocksdb", version = "0.59.
|
|
324
|
-
opendal-service-s3 = { path = "services/s3", version = "0.59.
|
|
325
|
-
opendal-service-seafile = { path = "services/seafile", version = "0.59.
|
|
326
|
-
opendal-service-sftp = { path = "services/sftp", version = "0.59.
|
|
327
|
-
opendal-service-sled = { path = "services/sled", version = "0.59.
|
|
328
|
-
opendal-service-sqlite = { path = "services/sqlite", version = "0.59.
|
|
329
|
-
opendal-service-surrealdb = { path = "services/surrealdb", version = "0.59.
|
|
330
|
-
opendal-service-swift = { path = "services/swift", version = "0.59.
|
|
331
|
-
opendal-service-tikv = { path = "services/tikv", version = "0.59.
|
|
332
|
-
opendal-service-tos = { path = "services/tos", version = "0.59.
|
|
333
|
-
opendal-service-upyun = { path = "services/upyun", version = "0.59.
|
|
334
|
-
opendal-service-vercel-artifacts = { path = "services/vercel-artifacts", version = "0.59.
|
|
335
|
-
opendal-service-vercel-blob = { path = "services/vercel-blob", version = "0.59.
|
|
336
|
-
opendal-service-webdav = { path = "services/webdav", version = "0.59.
|
|
337
|
-
opendal-service-webhdfs = { path = "services/webhdfs", version = "0.59.
|
|
338
|
-
opendal-service-yandex-disk = { path = "services/yandex-disk", version = "0.59.
|
|
339
|
-
opendal-testkit = { path = "testkit", version = "0.59.
|
|
249
|
+
opendal-core = { path = "core", version = "0.59.2", default-features = false }
|
|
250
|
+
opendal-http-transport-reqwest = { path = "http-transports/reqwest", version = "0.59.2", optional = true, default-features = false }
|
|
251
|
+
opendal-layer-async-backtrace = { path = "layers/async-backtrace", version = "0.59.2", optional = true, default-features = false }
|
|
252
|
+
opendal-layer-await-tree = { path = "layers/await-tree", version = "0.59.2", optional = true, default-features = false }
|
|
253
|
+
opendal-layer-capability-check = { path = "layers/capability-check", version = "0.59.2", optional = true, default-features = false }
|
|
254
|
+
opendal-layer-chaos = { path = "layers/chaos", version = "0.59.2", optional = true, default-features = false }
|
|
255
|
+
opendal-layer-concurrent-limit = { path = "layers/concurrent-limit", version = "0.59.2", optional = true, default-features = false }
|
|
256
|
+
opendal-layer-fastmetrics = { path = "layers/fastmetrics", version = "0.59.2", optional = true, default-features = false }
|
|
257
|
+
opendal-layer-fastrace = { path = "layers/fastrace", version = "0.59.2", optional = true, default-features = false }
|
|
258
|
+
opendal-layer-foyer = { path = "layers/foyer", version = "0.59.2", optional = true, default-features = false }
|
|
259
|
+
opendal-layer-hotpath = { path = "layers/hotpath", version = "0.59.2", optional = true, default-features = false }
|
|
260
|
+
opendal-layer-immutable-index = { path = "layers/immutable-index", version = "0.59.2", optional = true, default-features = false }
|
|
261
|
+
opendal-layer-logging = { path = "layers/logging", version = "0.59.2", optional = true, default-features = false }
|
|
262
|
+
opendal-layer-metrics = { path = "layers/metrics", version = "0.59.2", optional = true, default-features = false }
|
|
263
|
+
opendal-layer-mime-guess = { path = "layers/mime-guess", version = "0.59.2", optional = true, default-features = false }
|
|
264
|
+
opendal-layer-observe-metrics-common = { path = "layers/observe-metrics-common", version = "0.59.2", optional = true, default-features = false }
|
|
265
|
+
opendal-layer-otelmetrics = { path = "layers/otelmetrics", version = "0.59.2", optional = true, default-features = false }
|
|
266
|
+
opendal-layer-oteltrace = { path = "layers/oteltrace", version = "0.59.2", optional = true, default-features = false }
|
|
267
|
+
opendal-layer-prometheus = { path = "layers/prometheus", version = "0.59.2", optional = true, default-features = false }
|
|
268
|
+
opendal-layer-prometheus-client = { path = "layers/prometheus-client", version = "0.59.2", optional = true, default-features = false }
|
|
269
|
+
opendal-layer-retry = { path = "layers/retry", version = "0.59.2", optional = true, default-features = false }
|
|
270
|
+
opendal-layer-route = { path = "layers/route", version = "0.59.2", optional = true, default-features = false }
|
|
271
|
+
opendal-layer-tail-cut = { path = "layers/tail-cut", version = "0.59.2", optional = true, default-features = false }
|
|
272
|
+
opendal-layer-throttle = { path = "layers/throttle", version = "0.59.2", optional = true, default-features = false }
|
|
273
|
+
opendal-layer-timeout = { path = "layers/timeout", version = "0.59.2", optional = true, default-features = false }
|
|
274
|
+
opendal-layer-tracing = { path = "layers/tracing", version = "0.59.2", optional = true, default-features = false }
|
|
275
|
+
opendal-service-aliyun-drive = { path = "services/aliyun-drive", version = "0.59.2", optional = true, default-features = false }
|
|
276
|
+
opendal-service-alluxio = { path = "services/alluxio", version = "0.59.2", optional = true, default-features = false }
|
|
277
|
+
opendal-service-azblob = { path = "services/azblob", version = "0.59.2", optional = true, default-features = false }
|
|
278
|
+
opendal-service-azdls = { path = "services/azdls", version = "0.59.2", optional = true, default-features = false }
|
|
279
|
+
opendal-service-azfile = { path = "services/azfile", version = "0.59.2", optional = true, default-features = false }
|
|
280
|
+
opendal-service-b2 = { path = "services/b2", version = "0.59.2", optional = true, default-features = false }
|
|
281
|
+
opendal-service-cacache = { path = "services/cacache", version = "0.59.2", optional = true, default-features = false }
|
|
282
|
+
opendal-service-cloudflare-kv = { path = "services/cloudflare-kv", version = "0.59.2", optional = true, default-features = false }
|
|
283
|
+
opendal-service-compfs = { path = "services/compfs", version = "0.59.2", optional = true, default-features = false }
|
|
284
|
+
opendal-service-cos = { path = "services/cos", version = "0.59.2", optional = true, default-features = false }
|
|
285
|
+
opendal-service-d1 = { path = "services/d1", version = "0.59.2", optional = true, default-features = false }
|
|
286
|
+
opendal-service-dashmap = { path = "services/dashmap", version = "0.59.2", optional = true, default-features = false }
|
|
287
|
+
opendal-service-dbfs = { path = "services/dbfs", version = "0.59.2", optional = true, default-features = false }
|
|
288
|
+
opendal-service-dropbox = { path = "services/dropbox", version = "0.59.2", optional = true, default-features = false }
|
|
289
|
+
opendal-service-etcd = { path = "services/etcd", version = "0.59.2", optional = true, default-features = false }
|
|
290
|
+
opendal-service-foundationdb = { path = "services/foundationdb", version = "0.59.2", optional = true, default-features = false }
|
|
291
|
+
opendal-service-foyer = { path = "services/foyer", version = "0.59.2", optional = true, default-features = false }
|
|
292
|
+
opendal-service-fs = { path = "services/fs", version = "0.59.2", optional = true, default-features = false }
|
|
293
|
+
opendal-service-ftp = { path = "services/ftp", version = "0.59.2", optional = true, default-features = false }
|
|
294
|
+
opendal-service-gcs = { path = "services/gcs", version = "0.59.2", optional = true, default-features = false }
|
|
295
|
+
opendal-service-gcs-grpc = { path = "services/gcs-grpc", version = "0.59.2", optional = true, default-features = false }
|
|
296
|
+
opendal-service-gdrive = { path = "services/gdrive", version = "0.59.2", optional = true, default-features = false }
|
|
297
|
+
opendal-service-ghac = { path = "services/ghac", version = "0.59.2", optional = true, default-features = false }
|
|
298
|
+
opendal-service-github = { path = "services/github", version = "0.59.2", optional = true, default-features = false }
|
|
299
|
+
opendal-service-goosefs = { path = "services/goosefs", version = "0.59.2", optional = true, default-features = false }
|
|
300
|
+
opendal-service-gridfs = { path = "services/gridfs", version = "0.59.2", optional = true, default-features = false }
|
|
301
|
+
opendal-service-hdfs = { path = "services/hdfs", version = "0.59.2", optional = true, default-features = false }
|
|
302
|
+
opendal-service-hdfs-native = { path = "services/hdfs-native", version = "0.59.2", optional = true, default-features = false }
|
|
303
|
+
opendal-service-hf = { path = "services/hf", version = "0.59.2", optional = true, default-features = false }
|
|
304
|
+
opendal-service-http = { path = "services/http", version = "0.59.2", optional = true, default-features = false }
|
|
305
|
+
opendal-service-ipfs = { path = "services/ipfs", version = "0.59.2", optional = true, default-features = false }
|
|
306
|
+
opendal-service-ipmfs = { path = "services/ipmfs", version = "0.59.2", optional = true, default-features = false }
|
|
307
|
+
opendal-service-koofr = { path = "services/koofr", version = "0.59.2", optional = true, default-features = false }
|
|
308
|
+
opendal-service-lakefs = { path = "services/lakefs", version = "0.59.2", optional = true, default-features = false }
|
|
309
|
+
opendal-service-memcached = { path = "services/memcached", version = "0.59.2", optional = true, default-features = false }
|
|
310
|
+
opendal-service-mini-moka = { path = "services/mini_moka", version = "0.59.2", optional = true, default-features = false }
|
|
311
|
+
opendal-service-moka = { path = "services/moka", version = "0.59.2", optional = true, default-features = false }
|
|
312
|
+
opendal-service-mongodb = { path = "services/mongodb", version = "0.59.2", optional = true, default-features = false }
|
|
313
|
+
opendal-service-monoiofs = { path = "services/monoiofs", version = "0.59.2", optional = true, default-features = false }
|
|
314
|
+
opendal-service-mysql = { path = "services/mysql", version = "0.59.2", optional = true, default-features = false }
|
|
315
|
+
opendal-service-obs = { path = "services/obs", version = "0.59.2", optional = true, default-features = false }
|
|
316
|
+
opendal-service-onedrive = { path = "services/onedrive", version = "0.59.2", optional = true, default-features = false }
|
|
317
|
+
opendal-service-oss = { path = "services/oss", version = "0.59.2", optional = true, default-features = false }
|
|
318
|
+
opendal-service-pcloud = { path = "services/pcloud", version = "0.59.2", optional = true, default-features = false }
|
|
319
|
+
opendal-service-persy = { path = "services/persy", version = "0.59.2", optional = true, default-features = false }
|
|
320
|
+
opendal-service-postgresql = { path = "services/postgresql", version = "0.59.2", optional = true, default-features = false }
|
|
321
|
+
opendal-service-redb = { path = "services/redb", version = "0.59.2", optional = true, default-features = false }
|
|
322
|
+
opendal-service-redis = { path = "services/redis", version = "0.59.2", optional = true, default-features = false }
|
|
323
|
+
opendal-service-rocksdb = { path = "services/rocksdb", version = "0.59.2", optional = true, default-features = false }
|
|
324
|
+
opendal-service-s3 = { path = "services/s3", version = "0.59.2", optional = true, default-features = false }
|
|
325
|
+
opendal-service-seafile = { path = "services/seafile", version = "0.59.2", optional = true, default-features = false }
|
|
326
|
+
opendal-service-sftp = { path = "services/sftp", version = "0.59.2", optional = true, default-features = false }
|
|
327
|
+
opendal-service-sled = { path = "services/sled", version = "0.59.2", optional = true, default-features = false }
|
|
328
|
+
opendal-service-sqlite = { path = "services/sqlite", version = "0.59.2", optional = true, default-features = false }
|
|
329
|
+
opendal-service-surrealdb = { path = "services/surrealdb", version = "0.59.2", optional = true, default-features = false }
|
|
330
|
+
opendal-service-swift = { path = "services/swift", version = "0.59.2", optional = true, default-features = false }
|
|
331
|
+
opendal-service-tikv = { path = "services/tikv", version = "0.59.2", optional = true, default-features = false }
|
|
332
|
+
opendal-service-tos = { path = "services/tos", version = "0.59.2", optional = true, default-features = false }
|
|
333
|
+
opendal-service-upyun = { path = "services/upyun", version = "0.59.2", optional = true, default-features = false }
|
|
334
|
+
opendal-service-vercel-artifacts = { path = "services/vercel-artifacts", version = "0.59.2", optional = true, default-features = false }
|
|
335
|
+
opendal-service-vercel-blob = { path = "services/vercel-blob", version = "0.59.2", optional = true, default-features = false }
|
|
336
|
+
opendal-service-webdav = { path = "services/webdav", version = "0.59.2", optional = true, default-features = false }
|
|
337
|
+
opendal-service-webhdfs = { path = "services/webhdfs", version = "0.59.2", optional = true, default-features = false }
|
|
338
|
+
opendal-service-yandex-disk = { path = "services/yandex-disk", version = "0.59.2", optional = true, default-features = false }
|
|
339
|
+
opendal-testkit = { path = "testkit", version = "0.59.2", optional = true }
|
|
340
340
|
|
|
341
341
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
342
|
-
opendal-layer-dtrace = { path = "layers/dtrace", version = "0.59.
|
|
342
|
+
opendal-layer-dtrace = { path = "layers/dtrace", version = "0.59.2", optional = true, default-features = false }
|
|
343
343
|
|
|
344
344
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
345
|
-
opendal-service-opfs = { path = "services/opfs", version = "0.59.
|
|
345
|
+
opendal-service-opfs = { path = "services/opfs", version = "0.59.2", optional = true, default-features = false }
|
|
346
346
|
|
|
347
347
|
[dev-dependencies]
|
|
348
348
|
anyhow = "1.0"
|