Skip to content

Commit

Permalink
chore: Bump OpenDAL to v0.40.0 (mozilla#1885)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xuanwo authored and nebnes committed Sep 26, 2023
1 parent 01eb71f commit e54eb3f
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 98 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ jobs:
env:
SCCACHE_BUCKET: test
SCCACHE_ENDPOINT: http://127.0.0.1:9000/
SCCACHE_REGION: us-east-1
AWS_ACCESS_KEY_ID: "minioadmin"
AWS_SECRET_ACCESS_KEY: "minioadmin"
AWS_EC2_METADATA_DISABLED: "true"
Expand Down Expand Up @@ -310,6 +311,8 @@ jobs:
- name: Start nginx
shell: bash
run: |
sudo apt install -y nginx-full
mkdir /tmp/static
cp `pwd`/tests/htpasswd /tmp/htpasswd
nginx -c `pwd`/tests/nginx_http_cache.conf
Expand Down
150 changes: 57 additions & 93 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 11 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ log = "0.4"
num_cpus = "1.15"
number_prefix = "0.4"
once_cell = "1.17"
opendal = { version = "0.37.0", optional = true }
opendal = { version = "0.40.0", optional = true }
openssl = { version = "0.10.55", optional = true }
rand = "0.8.4"
regex = "1.7.3"
reqsign = { version = "0.13.0", optional = true }
reqsign = { version = "0.14", optional = true }
reqwest = { version = "0.11", features = [
"json",
"blocking",
Expand Down Expand Up @@ -157,11 +157,18 @@ webdav = ["opendal"]
# 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.
vendored-openssl = ["openssl?/vendored"]
vendored-openssl = ["openssl?/vendored", "opendal?/native-tls-vendored"]
# Enable features that require unstable features of Nightly Rust.
unstable = []
# Enables distributed support in the sccache client
dist-client = ["flate2", "hyper", "reqwest", "url", "sha2", "trust-dns-resolver"]
dist-client = [
"flate2",
"hyper",
"reqwest",
"url",
"sha2",
"trust-dns-resolver",
]
# Enables the sccache-dist binary
dist-server = [
"jwt",
Expand Down
Loading

0 comments on commit e54eb3f

Please sign in to comment.