Skip to content

Commit

Permalink
inport arch crate through git
Browse files Browse the repository at this point in the history
  • Loading branch information
yfblock committed Apr 16, 2024
1 parent 55aa3fc commit 411f10a
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ logging = { path = "../modules/logging" }
log = "0.4"
devices = { path = "../modules/devices" }
hal = { path = "../modules/hal" }
arch = { path = "../arch" }
arch = { git = "https://github.com/Byte-OS/arch.git" }
fs = { path = "../modules/fs" }
fdt = "0.1.5"
executor = { path = "../modules/executor" }
Expand Down
2 changes: 1 addition & 1 deletion modules/devices/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
[features]

[dependencies]
arch = { path = "../../arch" }
arch = { git = "https://github.com/Byte-OS/arch.git" }
fdt = "0.1.5"
linkme = { version = "0.3.22", features = ["used_linker"] }
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion modules/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
[dependencies]
crossbeam-queue = { version = "0.3.8", default-features = false, features = ["alloc"] }
logging = { path = "../logging" }
arch = { path = "../../arch"}
arch = { git = "https://github.com/Byte-OS/arch.git" }
sync = { path = "../sync" }
frame_allocator = { path = "../frame_allocator" }
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion modules/frame_allocator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ edition = "2021"
[dependencies]
bit_field = "0.10.1"
log = "0.4"
arch = { path = "../../arch" }
arch = { git = "https://github.com/Byte-OS/arch.git" }
sync = { path = "../sync" }
2 changes: 1 addition & 1 deletion modules/fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ devfs = { path = "../devfs" }
ramfs = { path = "../ramfs" }
procfs = { path = "../procfs" }
frame_allocator = { path = "../frame_allocator" }
arch = { path = "../../arch" }
arch = { git = "https://github.com/Byte-OS/arch.git" }

[dependencies.fatfs]
git = "https://github.com/byte-os/rust-fatfs.git"
Expand Down
2 changes: 1 addition & 1 deletion modules/hal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
arch = { path = "../../arch" }
arch = { git = "https://github.com/Byte-OS/arch.git" }
log = "0.4"
frame_allocator = { path = "../frame_allocator" }
devices = { path = "../devices" }
Expand Down
2 changes: 1 addition & 1 deletion modules/logging/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ edition = "2021"

[dependencies]
log = "0.4"
arch = { path = "../../arch" }
arch = { git = "https://github.com/Byte-OS/arch.git" }
devices = { path = "../devices" }
sync = { path = "../sync" }
2 changes: 1 addition & 1 deletion modules/procfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ edition = "2021"
[dependencies]
vfscore = { git = "https://github.com/Byte-OS/vfscore.git" }
sync = { path = "../sync" }
arch = { path = "../../arch" }
arch = { git = "https://github.com/Byte-OS/arch.git" }
log = "0.4"
2 changes: 1 addition & 1 deletion modules/ramfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ vfscore = { git = "https://github.com/Byte-OS/vfscore.git" }
log = "0.4"
sync = { path = "../sync" }
frame_allocator = { path = "../frame_allocator" }
arch = { path = "../../arch" }
arch = { git = "https://github.com/Byte-OS/arch.git" }

0 comments on commit 411f10a

Please sign in to comment.