Skip to content

Commit b5ae51e

Browse files
committed
wip: Rename vesper libs for potentially unlocking publishing
1 parent ced2223 commit b5ae51e

27 files changed

Lines changed: 306 additions & 298 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -53,29 +53,29 @@ bitfield-struct = { version = "0.12" }
5353
bitflags = { version = "2.10" }
5454
buddy-alloc = { version = "0.6.0", git = "https://github.com/metta-systems/buddy-alloc", branch = "feature/allocator-api" }
5555
cfg-if = { version = "1.0" }
56-
libaddress = { path = "libs/address" }
57-
liballoc = { path = "libs/alloc" }
58-
libboot = { path = "libs/boot" }
59-
libconsole = { path = "libs/console" }
60-
libcpu = { path = "libs/cpu" }
61-
libdriver = { path = "libs/driver" }
62-
libexception = { path = "libs/exception" }
63-
libkernel-state = { path = "libs/kernel-state" }
64-
liblocal-irq = { path = "libs/local-irq" }
65-
liblocking = { path = "libs/locking" }
66-
liblog = { path = "libs/log" }
67-
libmachine = { path = "libs/machine" }
68-
libmapping = { path = "libs/mapping" }
69-
libmemory = { path = "libs/memory" }
70-
libmmio = { path = "libs/mmio" }
71-
libobject = { path = "libs/object" }
72-
libplatform = { path = "libs/platform" }
73-
libprimitives = { path = "libs/primitives" }
74-
libprint = { path = "libs/print" }
75-
libqemu = { path = "libs/qemu" }
76-
libsyscall = { path = "libs/syscall" }
77-
libtest = { path = "libs/test" }
78-
libtime = { path = "libs/time" }
56+
libaddress = { path = "libs/address", package = "vesper-address" }
57+
liballoc = { path = "libs/alloc", package = "vesper-alloc" }
58+
libboot = { path = "libs/boot", package = "vesper-boot" }
59+
libconsole = { path = "libs/console", package = "vesper-console" }
60+
libcpu = { path = "libs/cpu", package = "vesper-cpu" }
61+
libdriver = { path = "libs/driver", package = "vesper-drivers" }
62+
libexception = { path = "libs/exception", package = "vesper-exceptions" }
63+
libkernel-state = { path = "libs/kernel-state", package = "vesper-kernel-state" }
64+
liblocal-irq = { path = "libs/local-irq", package = "vesper-local-irq" }
65+
liblocking = { path = "libs/locking", package = "vesper-locking" }
66+
liblog = { path = "libs/log", package = "vesper-log" }
67+
libmachine = { path = "libs/machine", package = "vesper-machines" }
68+
libmapping = { path = "libs/mapping", package = "vesper-mapping" }
69+
libmemory = { path = "libs/memory", package = "vesper-memory" }
70+
libmmio = { path = "libs/mmio", package = "vesper-mmio" }
71+
libobject = { path = "libs/object", package = "vesper-objects" }
72+
libplatform = { path = "libs/platform", package = "vesper-platforms" }
73+
libprimitives = { path = "libs/primitives", package = "vesper-primitives" }
74+
libprint = { path = "libs/print", package = "vesper-print" }
75+
libqemu = { path = "libs/qemu", package = "vesper-qemu" }
76+
libsyscall = { path = "libs/syscall", package = "vesper-syscalls" }
77+
libtest = { path = "libs/test", package = "vesper-tests" }
78+
libtime = { path = "libs/time", package = "vesper-time" }
7979
num = { version = "0.4", default-features = false }
8080
once_cell = { version = "1.21", default-features = false, features = ["unstable"] }
8181
safe-mmio = { version = "0.2" }

kernel/kickstart/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[package]
22
name = "kickstart"
3-
description = "Boot time initialization"
3+
4+
description = "Vesper nanokernel startup initialization."
5+
46
authors = { workspace = true }
57
categories = { workspace = true }
68
documentation = { workspace = true }

kernel/nucleus/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[package]
22
name = "nucleus"
3-
description = "Vesper nanokernel binary"
3+
4+
description = "Vesper nanokernel privileged nucleus binary."
5+
46
authors = { workspace = true }
57
categories = { workspace = true }
68
documentation = { workspace = true }

libs/address/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
2-
name = "libaddress"
2+
name = "vesper-address"
33

4-
description = "Vesper nanokernel memory Address types."
4+
description = "Vesper nanokernel memory address types."
55

66
authors = { workspace = true }
77
categories = { workspace = true }

libs/alloc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "liballoc"
2+
name = "vesper-alloc"
33

44
description = "Vesper nanokernel memory allocator types."
55

libs/boot/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "libboot"
2+
name = "vesper-boot"
33

44
description = "Vesper nanokernel boot PIE section."
55

libs/console/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
2-
name = "libconsole"
2+
name = "vesper-console"
33

4-
description = "Console functions."
4+
description = "Vesper nanokernel console functions."
55

66
authors = { workspace = true }
77
categories = { workspace = true }

libs/cpu/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "libcpu"
2+
name = "vesper-cpu"
33

44
description = "Vesper nanokernel CPU support."
55

libs/driver/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
2-
name = "libdriver"
2+
name = "vesper-drivers"
33

4-
description = "Interfaces for implementing drivers"
4+
description = "Vesper nanokernel interfaces for implementing device drivers."
55

66
authors = { workspace = true }
77
categories = { workspace = true }

0 commit comments

Comments
 (0)