Skip to content

Commit

Permalink
feat(bindings/java): bundled services
Browse files Browse the repository at this point in the history
Signed-off-by: tison <wander4096@gmail.com>
  • Loading branch information
tisonkun committed Aug 25, 2023
1 parent 9e8c92e commit 597147e
Showing 1 changed file with 44 additions and 2 deletions.
46 changes: 44 additions & 2 deletions bindings/java/Cargo.toml
Expand Up @@ -32,10 +32,52 @@ crate-type = ["cdylib"]
doc = false

[dependencies]
opendal.workspace = true

anyhow = "1.0.71"
jni = "0.21.1"
num_cpus = "1.15.0"
once_cell = "1.17.1"
tokio = { version = "1.28.1", features = ["full"] }

[dependencies.opendal]
workspace = true
features = [
"services-azblob",
"services-azdfs",
"services-cacache",
"services-cos",
"services-dashmap",
"services-dropbox",
"services-etcd",
"services-foundationdb",
"services-fs",
"services-ftp",
"services-gcs",
"services-gdrive",
"services-ghac",
# FIXME how to support HDFS services in bindings?
# "services-hdfs",
"services-http",
"services-ipfs",
"services-memcached",
"services-memory",
"services-mini-moka",
"services-moka",
"services-obs",
"services-onedrive",
"services-oss",
"services-persy",
"services-postgresql",
"services-redb",
"services-redis",
"services-redis-rustls",
"services-rocksdb",
"services-s3",
"services-sftp",
"services-sled",
"services-supabase",
"services-tikv",
"services-vercel-artifacts",
"services-wasabi",
"services-webdav",
"services-webhdfs",
]

0 comments on commit 597147e

Please sign in to comment.