From 9a4a168166187b0e7382ca30e97ffea40fc87e45 Mon Sep 17 00:00:00 2001 From: yufeng <321353225@qq.com> Date: Wed, 17 Apr 2024 16:32:26 +0800 Subject: [PATCH] fix: optimize hal dep --- Cargo.lock | 2 -- modules/hal/Cargo.toml | 2 -- 2 files changed, 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bc53474..c33b7fe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -423,10 +423,8 @@ name = "hal" version = "0.1.0" dependencies = [ "arch", - "devices", "frame_allocator", "log", - "sync", ] [[package]] diff --git a/modules/hal/Cargo.toml b/modules/hal/Cargo.toml index 9b38f18..3af1e7e 100644 --- a/modules/hal/Cargo.toml +++ b/modules/hal/Cargo.toml @@ -9,5 +9,3 @@ edition = "2021" arch = { git = "https://github.com/Byte-OS/arch.git" } log = "0.4" frame_allocator = { git = "https://github.com/Byte-OS/bit_frame_allocator.git" } -devices = { path = "../devices" } -sync = { git = "https://github.com/Byte-OS/sync.git" }