Skip to content

Commit 0c76582

Browse files
committed
build: update deps
Signed-off-by: YdrMaster <[email protected]>
1 parent cd83145 commit 0c76582

File tree

14 files changed

+170
-99
lines changed

14 files changed

+170
-99
lines changed

Cargo.lock

+148-77
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ch2/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["YdrMaster <[email protected]>"]
66

77
[dependencies]
88
sbi-rt = { version = "0.0.2", features = ["legacy"] }
9-
riscv = "0.9"
9+
riscv = "0.10.1"
1010

1111
linker = { path = "../linker" }
1212
rcore-console = { path = "../console" }

ch3/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["YdrMaster <[email protected]>"]
66

77
[dependencies]
88
sbi-rt = { version = "0.0.2", features = ["legacy"] }
9-
riscv = "0.9"
9+
riscv = "0.10.1"
1010

1111
linker = { path = "../linker" }
1212
rcore-console = { path = "../console" }

ch4/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = ["YdrMaster <[email protected]>"]
77
[dependencies]
88
sbi-rt = { version = "0.0.2", features = ["legacy"] }
99
xmas-elf = "0.8.0"
10-
riscv = "0.9"
10+
riscv = "0.10.1"
1111

1212
linker = { path = "../linker" }
1313
rcore-console = { path = "../console" }

ch5/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ authors = ["zflcs <[email protected]>"]
77
[dependencies]
88
sbi-rt = { version = "0.0.2", features = ["legacy"] }
99
xmas-elf = "0.8.0"
10-
riscv = "0.9"
11-
spin = "0.9.4"
10+
riscv = "0.10.1"
11+
spin = "0.9"
1212

1313
linker = { path = "../linker" }
1414
rcore-console = { path = "../console" }

ch6/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ authors = ["tkf2019 <[email protected]>"]
88
virtio-drivers = { git = "https://github.com/rcore-os/virtio-drivers", rev = "4ee80e5" }
99
sbi-rt = { version = "0.0.2", features = ["legacy"] }
1010
xmas-elf = "0.8.0"
11-
riscv = "0.9"
12-
spin = "0.9.4"
11+
riscv = "0.10.1"
12+
spin = "0.9"
1313

1414
linker = { path = "../linker" }
1515
rcore-console = { path = "../console" }
1616
kernel-context = { path = "../kernel-context", features = ["foreign"] }
1717
kernel-alloc = { path = "../kernel-alloc" }
1818
kernel-vm = { path = "../kernel-vm" }
1919
syscall = { path = "../syscall", features = ["kernel"] }
20-
rcore-task-manage = { path = "../task-manage", features = ["proc"] }
20+
rcore-task-manage = { path = "../task-manage", features = ["proc"] }
2121
easy-fs = { path = "../easy-fs" }
2222

2323
[build-dependencies]

ch7/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ authors = ["scPointer <[email protected]>"]
88
virtio-drivers = { git = "https://github.com/rcore-os/virtio-drivers", rev = "4ee80e5" }
99
sbi-rt = { version = "0.0.2", features = ["legacy"] }
1010
xmas-elf = "0.8.0"
11-
riscv = "0.9"
12-
spin = "0.9.4"
11+
riscv = "0.10.1"
12+
spin = "0.9"
1313

1414
linker = { path = "../linker" }
1515
rcore-console = { path = "../console" }
1616
kernel-context = { path = "../kernel-context", features = ["foreign"] }
1717
kernel-alloc = { path = "../kernel-alloc" }
1818
kernel-vm = { path = "../kernel-vm" }
1919
syscall = { path = "../syscall", features = ["kernel"] }
20-
rcore-task-manage = { path = "../task-manage", features = ["proc"] }
20+
rcore-task-manage = { path = "../task-manage", features = ["proc"] }
2121
easy-fs = { path = "../easy-fs" }
2222
signal = { path = "../signal" }
2323
signal-impl = { path = "../signal-impl" }

ch8/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ authors = ["zflcs <[email protected]>"]
88
virtio-drivers = { git = "https://github.com/rcore-os/virtio-drivers", rev = "4ee80e5" }
99
sbi-rt = { version = "0.0.2", features = ["legacy"] }
1010
xmas-elf = "0.8.0"
11-
riscv = "0.9"
12-
spin = "0.9.4"
11+
riscv = "0.10.1"
12+
spin = "0.9"
1313

1414
linker = { path = "../linker" }
1515
rcore-console = { path = "../console" }
1616
kernel-context = { path = "../kernel-context", features = ["foreign"] }
1717
kernel-alloc = { path = "../kernel-alloc" }
1818
kernel-vm = { path = "../kernel-vm" }
1919
syscall = { path = "../syscall", features = ["kernel"] }
20-
rcore-task-manage = { path = "../task-manage", features = ["thread"] }
20+
rcore-task-manage = { path = "../task-manage", features = ["thread"] }
2121
easy-fs = { path = "../easy-fs" }
2222
signal = { path = "../signal" }
2323
signal-impl = { path = "../signal-impl" }

console/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ categories = ["no-std"]
1313

1414
[dependencies]
1515
log = "0.4.17"
16-
spin = "0.9.4"
16+
spin = "0.9"

kernel-vm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ authors = ["YdrMaster <[email protected]>"]
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
spin = "0.9.4"
10+
spin = "0.9"
1111
page-table = "0.0.6"

rustsbi-qemu.bin

-2.74 KB
Binary file not shown.

sync/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ authors = ["zflcs <[email protected]>"]
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
riscv = "0.9"
11-
spin = "0.9.4"
10+
riscv = "0.10.1"
11+
spin = "0.9"
1212
rcore-task-manage = { path = "../task-manage", features = ["thread"] }

syscall/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = ["YdrMaster <[email protected]>"]
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
spin = "0.9.4"
10+
spin = "0.9"
1111
bitflags = "1.2.1"
1212
signal-defs = { path = "../signal-defs" }
1313

xtask/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ authors = ["YdrMaster <[email protected]>"]
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
clap = { version = "4.0", features = ["derive"] }
10+
clap = { version = "4.1", features = ["derive"] }
1111
os-xtask-utils = "0.0.0"
12-
once_cell = "1.16"
12+
once_cell = "1.17"
1313

1414
serde = "1.0"
1515
serde_derive = "1.0"
16-
toml = "0.5.9"
16+
toml = "0.7"
1717

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

0 commit comments

Comments
 (0)