From c1c9b659bfd39253c278a4c1c4eb69b2a24883a2 Mon Sep 17 00:00:00 2001 From: Yu Chen Date: Sat, 31 Dec 2022 11:05:51 +0800 Subject: [PATCH] fix for rust-analyzer warning --- .vscode/settings.json | 6 +++--- easy-fs-fuse/Cargo.toml | 6 +++--- user/Cargo.toml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index bf81ab53..6a406554 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,7 +7,7 @@ // For Rust Analyzer plugin users: "rust-analyzer.cargo.target": "riscv64gc-unknown-none-elf", "rust-analyzer.checkOnSave.allTargets": false, - "rust-analyzer.cargo.features": [ - "board_qemu" - ] + // "rust-analyzer.cargo.features": [ + // "board_qemu" + // ] } \ No newline at end of file diff --git a/easy-fs-fuse/Cargo.toml b/easy-fs-fuse/Cargo.toml index 0527e9b8..5c5e68d5 100644 --- a/easy-fs-fuse/Cargo.toml +++ b/easy-fs-fuse/Cargo.toml @@ -11,6 +11,6 @@ clap = "2.33.3" easy-fs = { path = "../easy-fs" } rand = "0.8.0" -[features] -board_qemu = [] -board_k210 = [] \ No newline at end of file +# [features] +# board_qemu = [] +# board_k210 = [] \ No newline at end of file diff --git a/user/Cargo.toml b/user/Cargo.toml index fe4fc563..3bc82dcb 100644 --- a/user/Cargo.toml +++ b/user/Cargo.toml @@ -13,6 +13,6 @@ bitflags = "1.2.1" [profile.release] debug = true -[features] -board_qemu = [] -board_k210 = [] \ No newline at end of file +# [features] +# board_qemu = [] +# board_k210 = [] \ No newline at end of file -- GitLab