Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
113 changes: 11 additions & 102 deletions core/Cargo.lock

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

2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ libtest-mimic = "0.8"
log = { workspace = true }
logforth = { workspace = true }
rand = { workspace = true }
reqwest = "0.12.24"
reqwest = "0.13.2"
sha2 = { workspace = true }
size = "0.5"
tokio = { workspace = true, features = ["fs", "macros", "rt-multi-thread"] }
Expand Down
4 changes: 2 additions & 2 deletions core/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ all-features = true
default = ["reqwest-rustls-tls", "executors-tokio"]

# Enable reqwest rustls tls support.
reqwest-rustls-tls = ["reqwest/rustls-tls"]
reqwest-rustls-tls = ["reqwest/rustls"]

# Enable opendal's blocking support.
blocking = ["internal-tokio-rt"]
Expand Down Expand Up @@ -76,7 +76,7 @@ mea = { workspace = true }
percent-encoding = "2"
quick-xml = { workspace = true, features = ["serialize", "overlapped-lists"] }
reqsign-core = { version = "3.0.0", default-features = false }
reqwest = { version = "0.12.24", features = [
reqwest = { version = "0.13.2", features = [
"stream",
], default-features = false }
serde = { workspace = true, features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions core/core/src/docs/performance/http_optimization.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,5 +122,5 @@ By default, the connection pool is unlimited, allowing `reqwest` to open as many

You can tune those settings via:

- [pool_idle_timeout](https://docs.rs/reqwest/0.12.15/reqwest/struct.ClientBuilder.html#method.pool_idle_timeout): Set an optional timeout for idle sockets being kept-alive.
- [pool_max_idle_per_host](https://docs.rs/reqwest/0.12.15/reqwest/struct.ClientBuilder.html#method.pool_max_idle_per_host): Sets the maximum idle connection per host allowed in the pool.
- [pool_idle_timeout](https://docs.rs/reqwest/0.13.2/reqwest/struct.ClientBuilder.html#method.pool_idle_timeout): Set an optional timeout for idle sockets being kept-alive.
- [pool_max_idle_per_host](https://docs.rs/reqwest/0.13.2/reqwest/struct.ClientBuilder.html#method.pool_max_idle_per_host): Sets the maximum idle connection per host allowed in the pool.
5 changes: 4 additions & 1 deletion core/layers/tracing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ opendal-core = { path = "../../core", version = "0.55.0" }
opentelemetry = { version = "0.31.0", default-features = false, features = [
"trace",
] }
opentelemetry-otlp = { version = "0.31.0", features = ["grpc-tonic"] }
opentelemetry-otlp = { version = "0.31.0", default-features = false, features = [
"grpc-tonic",
"trace",
] }
opentelemetry_sdk = { version = "0.31.0", features = ["rt-tokio"] }
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
tracing-opentelemetry = "0.32.0"
Expand Down
4 changes: 2 additions & 2 deletions core/services/hf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ http = { workspace = true }
log = { workspace = true }
opendal-core = { path = "../../core", version = "0.55.0", default-features = false }
percent-encoding = "2"
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
reqwest = { version = "0.13.2", default-features = false, features = [
"rustls",
] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
Expand Down
Loading