Skip to content

Commit 6d3e484

Browse files
committed
chore: update deps
1 parent 5c8fa32 commit 6d3e484

File tree

4 files changed

+33
-47
lines changed

4 files changed

+33
-47
lines changed

Cargo.lock

Lines changed: 8 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,6 @@ axerrno = "0.1"
4747
axfs-ng-vfs = "0.1"
4848
axio = "0.1"
4949
axpoll = "0.1"
50-
starry-process = "0.2"
51-
starry-signal = "0.2"
52-
starry-vm = "0.1"
53-
5450
bitflags = "2.6"
5551
bytemuck = { version = "1.23", features = ["unsound_ptr_pod_impl"] }
5652
cfg-if = "1.0"
@@ -60,7 +56,7 @@ hashbrown = "0.15.4"
6056
kspin = "0.1"
6157
lazy_static = { version = "1.5", features = ["spin_no_std"] }
6258
linkme = "0.3.33"
63-
linux-raw-sys = { version = "0.9.3", default-features = false, features = [
59+
linux-raw-sys = { version = "0.11", default-features = false, features = [
6460
"no_std",
6561
"general",
6662
"net",
@@ -70,7 +66,10 @@ linux-raw-sys = { version = "0.9.3", default-features = false, features = [
7066
memory_addr = "0.4"
7167
scope-local = "0.1"
7268
slab = { version = "0.4.9", default-features = false }
73-
spin = "0.9"
69+
spin = "0.10"
70+
starry-process = "0.2"
71+
starry-signal = "0.2"
72+
starry-vm = "0.1"
7473

7574
starry-core = { path = "./core" }
7675
starry-api = { path = "./api" }
@@ -111,26 +110,24 @@ pci = ["axfeat/bus-pci"]
111110
mmio = ["axfeat/bus-mmio"]
112111

113112
[dependencies]
114-
axfeat.workspace = true
115-
116113
axdriver.workspace = true
114+
axerrno.workspace = true
115+
axfeat.workspace = true
117116
axfs-ng.workspace = true
118117
axhal.workspace = true
119118
axlog.workspace = true
120119
axruntime.workspace = true
121120
axsync.workspace = true
122121
axtask.workspace = true
123-
124-
starry-core.workspace = true
125-
starry-api.workspace = true
126-
127-
axerrno.workspace = true
128122
cfg-if.workspace = true
129123
linkme.workspace = true
130124
linux-raw-sys.workspace = true
131125
starry-process.workspace = true
132126
starry-signal.workspace = true
133127

128+
starry-core.workspace = true
129+
starry-api.workspace = true
130+
134131
[dependencies.axplat-riscv64-visionfive2]
135132
git = "https://github.com/Starry-OS/axplat-riscv64-visionfive2.git"
136133
rev = "a4f99aa"
@@ -157,7 +154,7 @@ axpoll = { git = "https://github.com/Starry-OS/axpoll.git", rev = "258cb5f" }
157154
page_table_entry = { git = "https://github.com/Starry-OS/page_table_multiarch.git", rev = "3f697c8" }
158155
page_table_multiarch = { git = "https://github.com/Starry-OS/page_table_multiarch.git", rev = "3f697c8" }
159156
starry-process = { git = "https://github.com/Starry-OS/starry-process.git", rev = "6327455" }
160-
starry-signal = { git = "https://github.com/Starry-OS/starry-signal.git", rev = "01aa4a0" }
157+
starry-signal = { git = "https://github.com/Starry-OS/starry-signal.git", rev = "6cc32f2" }
161158
starry-vm = { git = "https://github.com/Starry-OS/starry-vm.git", rev = "e2a50e7" }
162159

163160
[package.metadata.vendor-filter]

api/Cargo.toml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,13 @@ memtrack = ["axfeat/backtrace", "axalloc/tracking", "dep:gimli"]
1212
dev-log = []
1313

1414
[dependencies]
15-
axfeat.workspace = true
16-
1715
axalloc.workspace = true
16+
axbacktrace.workspace = true
1817
axconfig.workspace = true
1918
axdisplay.workspace = true
2019
axdriver.workspace = true
20+
axerrno.workspace = true
21+
axfeat.workspace = true
2122
axfs-ng-vfs.workspace = true
2223
axfs-ng.workspace = true
2324
axhal.workspace = true
@@ -26,14 +27,9 @@ axio.workspace = true
2627
axlog.workspace = true
2728
axmm.workspace = true
2829
axnet.workspace = true
30+
axpoll.workspace = true
2931
axsync.workspace = true
3032
axtask.workspace = true
31-
axpoll.workspace = true
32-
33-
starry-core.workspace = true
34-
35-
axbacktrace.workspace = true
36-
axerrno.workspace = true
3733
bitflags.workspace = true
3834
bitmaps = { version = "3.2.1", default-features = false }
3935
bytemuck.workspace = true
@@ -55,16 +51,18 @@ rand = { version = "0.9.1", default-features = false, features = [
5551
"alloc",
5652
"small_rng",
5753
] }
54+
ringbuf = { version = "0.4.8", default-features = false, features = ["alloc"] }
5855
scope-local.workspace = true
5956
slab.workspace = true
6057
spin.workspace = true
6158
starry-process.workspace = true
6259
starry-signal.workspace = true
6360
starry-vm = { workspace = true, features = ["axio"] }
6461
syscalls = { git = "https://github.com/jasonwhite/syscalls.git", rev = "92624de", default-features = false }
65-
ringbuf = { version = "0.4.8", default-features = false, features = ["alloc"] }
6662
zerocopy = { version = "0.8.26", features = ["derive"] }
6763

64+
starry-core.workspace = true
65+
6866
[target.'cfg(target_arch = "x86_64")'.dependencies]
6967
x86 = "0.52"
7068

core/Cargo.toml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,28 @@ homepage.workspace = true
77
repository.workspace = true
88

99
[dependencies]
10-
axfeat.workspace = true
1110
axbacktrace.workspace = true
12-
axfs-ng.workspace = true
11+
axconfig.workspace = true
12+
axerrno.workspace = true
13+
axfeat.workspace = true
1314
axfs-ng-vfs.workspace = true
15+
axfs-ng.workspace = true
1416
axhal.workspace = true
17+
axio.workspace = true
1518
axlog.workspace = true
1619
axmm.workspace = true
20+
axpoll.workspace = true
1721
axsync.workspace = true
1822
axtask.workspace = true
19-
20-
axconfig.workspace = true
21-
axerrno.workspace = true
22-
axio.workspace = true
23-
axpoll.workspace = true
2423
bitflags.workspace = true
2524
bytemuck = { workspace = true, features = ["derive"] }
2625
cfg-if.workspace = true
2726
event-listener.workspace = true
2827
extern-trait.workspace = true
29-
futures = { version = "0.3.31", default-features = false }
3028
hashbrown = { workspace = true }
3129
inherit-methods-macro = "0.1.0"
32-
kernel-elf-parser = { git = "https://github.com/Starry-OS/kernel_elf_parser.git", rev = "fdcce74" }
3330
kernel_guard = "0.1"
31+
kernel-elf-parser = { git = "https://github.com/Starry-OS/kernel_elf_parser.git", rev = "fdcce74" }
3432
kspin.workspace = true
3533
lazy_static = { workspace = true }
3634
linkme.workspace = true

0 commit comments

Comments
 (0)