Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions frame/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ bench = false
doctest = false

[dependencies]
spin = { version = "0.9", default-features = false, features = ["lazy", "once"] }
spin = { version = "0.12", default-features = false, features = ["lazy", "once"] }

# x86_64: typed wrappers for descriptor tables, page-table entries, control
# registers, MSRs. `abi_x86_interrupt` enables `set_handler_fn` impls that
Expand All @@ -32,6 +32,6 @@ linked_list_allocator = { version = "0.10", default-features = false }

# Buddy allocator for physical frames. The `FrameAllocator` type sits
# behind the `alloc` feature.
buddy_system_allocator = { version = "0.10", default-features = false, features = ["alloc"] }
buddy_system_allocator = { version = "0.13", default-features = false, features = ["alloc"] }

bitflags = { version = "2.12", default-features = false }
2 changes: 1 addition & 1 deletion kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ virtio = { path = "../drivers/virtio", optional = true }
# Result everywhere (no panics on malformed input) and is exercised by
# every Rust compile.
# read_core + elf only — no compression, no write, no archive.
object = { version = "0.36", default-features = false, features = ["read_core", "elf"], optional = true }
object = { version = "0.39", default-features = false, features = ["read_core", "elf"], optional = true }
bitflags = { version = "2.12", default-features = false }
# smoltcp — TCP/IP stack. Wraps our virtio-net driver via a Device
# adapter. MIT/Apache, used under MIT. The heapless "medium-ip"
Expand Down