Skip to content

Commit d2c306d

Browse files
committed
fix
Signed-off-by: xxchan <[email protected]>
1 parent 9fd4984 commit d2c306d

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ async_fn_in_trait = "allow"
238238
unexpected_cfgs = { level = "warn", check-cfg = [
239239
'cfg(madsim)',
240240
'cfg(coverage)',
241-
'cfg(dashboard_built)'
241+
'cfg(dashboard_built)',
242242
] }
243243

244244
[workspace.lints.clippy]

ci/scripts/build-other.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ set -euo pipefail
55

66
source ci/scripts/common.sh
77

8-
98
echo "--- Build Rust UDF"
109
cd e2e_test/udf/wasm
10+
rustup target add wasm32-wasi
1111
cargo build --release
1212
cd ../../..
1313

lints/rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# See `README.md` before bumping the version.
22

33
[toolchain]
4-
channel = "nightly-2024-03-21"
4+
channel = "nightly-2024-06-08"
55
components = ["llvm-tools-preview", "rustc-dev"]

src/object_store/src/object/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -860,6 +860,7 @@ pub async fn build_remote_object_store(
860860
)
861861
}
862862
}
863+
#[expect(unexpected_cfgs)]
863864
#[cfg(feature = "hdfs-backend")]
864865
hdfs if hdfs.starts_with("hdfs://") => {
865866
let hdfs = hdfs.strip_prefix("hdfs://").unwrap();

src/object_store/src/object/opendal_engine/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
pub mod opendal_object_store;
1616
pub use opendal_object_store::*;
1717

18+
#[expect(unexpected_cfgs)]
1819
#[cfg(feature = "hdfs-backend")]
1920
pub mod hdfs;
2021
pub mod webhdfs;

0 commit comments

Comments
 (0)