Skip to content

Commit

Permalink
build: update deps
Browse files Browse the repository at this point in the history
Signed-off-by: YdrMaster <ydrml@hotmail.com>
  • Loading branch information
YdrMaster committed Feb 13, 2023
1 parent cd83145 commit 0c76582
Show file tree
Hide file tree
Showing 14 changed files with 170 additions and 99 deletions.
225 changes: 148 additions & 77 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ch2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["YdrMaster <ydrml@hotmail.com>"]

[dependencies]
sbi-rt = { version = "0.0.2", features = ["legacy"] }
riscv = "0.9"
riscv = "0.10.1"

linker = { path = "../linker" }
rcore-console = { path = "../console" }
Expand Down
2 changes: 1 addition & 1 deletion ch3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["YdrMaster <ydrml@hotmail.com>"]

[dependencies]
sbi-rt = { version = "0.0.2", features = ["legacy"] }
riscv = "0.9"
riscv = "0.10.1"

linker = { path = "../linker" }
rcore-console = { path = "../console" }
Expand Down
2 changes: 1 addition & 1 deletion ch4/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ authors = ["YdrMaster <ydrml@hotmail.com>"]
[dependencies]
sbi-rt = { version = "0.0.2", features = ["legacy"] }
xmas-elf = "0.8.0"
riscv = "0.9"
riscv = "0.10.1"

linker = { path = "../linker" }
rcore-console = { path = "../console" }
Expand Down
4 changes: 2 additions & 2 deletions ch5/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ authors = ["zflcs <1491657576@qq.com>"]
[dependencies]
sbi-rt = { version = "0.0.2", features = ["legacy"] }
xmas-elf = "0.8.0"
riscv = "0.9"
spin = "0.9.4"
riscv = "0.10.1"
spin = "0.9"

linker = { path = "../linker" }
rcore-console = { path = "../console" }
Expand Down
6 changes: 3 additions & 3 deletions ch6/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ authors = ["tkf2019 <kaifu6821@qq.com>"]
virtio-drivers = { git = "https://github.com/rcore-os/virtio-drivers", rev = "4ee80e5" }
sbi-rt = { version = "0.0.2", features = ["legacy"] }
xmas-elf = "0.8.0"
riscv = "0.9"
spin = "0.9.4"
riscv = "0.10.1"
spin = "0.9"

linker = { path = "../linker" }
rcore-console = { path = "../console" }
kernel-context = { path = "../kernel-context", features = ["foreign"] }
kernel-alloc = { path = "../kernel-alloc" }
kernel-vm = { path = "../kernel-vm" }
syscall = { path = "../syscall", features = ["kernel"] }
rcore-task-manage = { path = "../task-manage", features = ["proc"] }
rcore-task-manage = { path = "../task-manage", features = ["proc"] }
easy-fs = { path = "../easy-fs" }

[build-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions ch7/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ authors = ["scPointer <jax01@foxmail.com>"]
virtio-drivers = { git = "https://github.com/rcore-os/virtio-drivers", rev = "4ee80e5" }
sbi-rt = { version = "0.0.2", features = ["legacy"] }
xmas-elf = "0.8.0"
riscv = "0.9"
spin = "0.9.4"
riscv = "0.10.1"
spin = "0.9"

linker = { path = "../linker" }
rcore-console = { path = "../console" }
kernel-context = { path = "../kernel-context", features = ["foreign"] }
kernel-alloc = { path = "../kernel-alloc" }
kernel-vm = { path = "../kernel-vm" }
syscall = { path = "../syscall", features = ["kernel"] }
rcore-task-manage = { path = "../task-manage", features = ["proc"] }
rcore-task-manage = { path = "../task-manage", features = ["proc"] }
easy-fs = { path = "../easy-fs" }
signal = { path = "../signal" }
signal-impl = { path = "../signal-impl" }
Expand Down
6 changes: 3 additions & 3 deletions ch8/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ authors = ["zflcs <1491657576@qq.com>"]
virtio-drivers = { git = "https://github.com/rcore-os/virtio-drivers", rev = "4ee80e5" }
sbi-rt = { version = "0.0.2", features = ["legacy"] }
xmas-elf = "0.8.0"
riscv = "0.9"
spin = "0.9.4"
riscv = "0.10.1"
spin = "0.9"

linker = { path = "../linker" }
rcore-console = { path = "../console" }
kernel-context = { path = "../kernel-context", features = ["foreign"] }
kernel-alloc = { path = "../kernel-alloc" }
kernel-vm = { path = "../kernel-vm" }
syscall = { path = "../syscall", features = ["kernel"] }
rcore-task-manage = { path = "../task-manage", features = ["thread"] }
rcore-task-manage = { path = "../task-manage", features = ["thread"] }
easy-fs = { path = "../easy-fs" }
signal = { path = "../signal" }
signal-impl = { path = "../signal-impl" }
Expand Down
2 changes: 1 addition & 1 deletion console/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ categories = ["no-std"]

[dependencies]
log = "0.4.17"
spin = "0.9.4"
spin = "0.9"
2 changes: 1 addition & 1 deletion kernel-vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ authors = ["YdrMaster <ydrml@hotmail.com>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
spin = "0.9.4"
spin = "0.9"
page-table = "0.0.6"
Binary file modified rustsbi-qemu.bin
Binary file not shown.
4 changes: 2 additions & 2 deletions sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ authors = ["zflcs <zhaofangliang@foxmail.com>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
riscv = "0.9"
spin = "0.9.4"
riscv = "0.10.1"
spin = "0.9"
rcore-task-manage = { path = "../task-manage", features = ["thread"] }
2 changes: 1 addition & 1 deletion syscall/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ authors = ["YdrMaster <ydrml@hotmail.com>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
spin = "0.9.4"
spin = "0.9"
bitflags = "1.2.1"
signal-defs = { path = "../signal-defs" }

Expand Down
6 changes: 3 additions & 3 deletions xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ authors = ["YdrMaster <ydrml@hotmail.com>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.0", features = ["derive"] }
clap = { version = "4.1", features = ["derive"] }
os-xtask-utils = "0.0.0"
once_cell = "1.16"
once_cell = "1.17"

serde = "1.0"
serde_derive = "1.0"
toml = "0.5.9"
toml = "0.7"

easy-fs = { path = "../easy-fs" }

0 comments on commit 0c76582

Please sign in to comment.