Skip to content

Commit e8061b5

Browse files
Merge branch 'main' into specify-server-timeout
2 parents 4788cba + 95455ad commit e8061b5

File tree

14 files changed

+170
-206
lines changed

14 files changed

+170
-206
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,9 @@ jobs:
160160
- os: windows-2019
161161
target: x86_64-pc-windows-msvc
162162
rustflags: -Ctarget-feature=+crt-static
163+
- os: windows-2019
164+
target: aarch64-pc-windows-msvc
165+
rustflags: -Ctarget-feature=+crt-static
163166
steps:
164167
- name: Clone repository
165168
uses: actions/checkout@v4

Cargo.lock

Lines changed: 51 additions & 87 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ mime = "0.3"
6464
num_cpus = "1.16"
6565
number_prefix = "0.4"
6666
once_cell = "1.19"
67-
opendal = { version = "0.47.3", optional = true, default-features = false }
67+
opendal = { version = "0.48.0", optional = true, default-features = false }
6868
openssl = { version = "0.10.64", optional = true }
6969
rand = "0.8.4"
7070
regex = "1.10.3"
71-
reqsign = { version = "0.15.2", optional = true }
71+
reqsign = { version = "0.16.0", optional = true }
7272
reqwest = { version = "0.12", features = [
7373
"json",
7474
"blocking",
@@ -140,16 +140,15 @@ daemonize = "0.5"
140140
optional = true
141141
version = "0.1.15"
142142

143-
[target.'cfg(windows)'.dependencies.winapi]
143+
[target.'cfg(windows)'.dependencies.windows-sys]
144144
features = [
145-
"fileapi",
146-
"handleapi",
147-
"stringapiset",
148-
"winnls",
149-
"processenv",
150-
"std",
145+
"Win32_Foundation",
146+
"Win32_Globalization",
147+
"Win32_Storage_FileSystem",
148+
"Win32_System_Threading",
149+
"Win32_System_Console",
151150
]
152-
version = "0.3"
151+
version = "0.52"
153152

154153
[features]
155154
all = [

src/cache/azure.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ pub struct AzureBlobCache;
2424

2525
impl AzureBlobCache {
2626
pub fn build(connection_string: &str, container: &str, key_prefix: &str) -> Result<Operator> {
27-
let mut builder = Azblob::from_connection_string(connection_string)?;
28-
builder.container(container);
29-
builder.root(key_prefix);
27+
let builder = Azblob::from_connection_string(connection_string)?
28+
.container(container)
29+
.root(key_prefix);
3030

3131
let op = Operator::new(builder)?
3232
.layer(LoggingLayer::default())

0 commit comments

Comments
 (0)