Skip to content

Commit

Permalink
misc: using workspace versioning and bumped version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
WolverinDEV committed Nov 10, 2024
1 parent a4d86e7 commit 8322621
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,14 @@ members = [

"driver",
"driver-uefi",
"driver-standalone", "driver-interface",
"driver-standalone",
"driver-interface",
]

[workspace.package]
version = "0.3.0"
edition = "2021"

[profile.dev]
# Opt-Level of 1 is required to keep stack size small.
# Important as we only got 8k stack size and allocating all structs
Expand Down
4 changes: 2 additions & 2 deletions driver-interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "driver-interface-kernel"
version = "0.1.0"
edition = "2021"
description = "Valthrun Driver Interface for the Kernel Driver"
version.workspace = true
edition.workspace = true

[lib]
crate-type = ["cdylib"]
Expand Down
6 changes: 3 additions & 3 deletions driver-standalone/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "driver-standalone"
version = "0.2.2"
edition = "2021"
version.workspace = true
edition.workspace = true

[lib]
path = "src/lib.rs"
Expand All @@ -19,7 +19,7 @@ kapi-kmodule = { version = "0.1.0", path = "../utils/kapi-kmodule" }
kdef = { version = "0.1.0", path = "../utils/kdef" }
seh = { version = "0.1.0", path = "../utils/seh" }
utils-imports = { version = "0.1.0", path = "../utils/imports" }
driver = { version = "0.2.1", path = "../driver" }
driver = { path = "../driver" }
kalloc = { version = "0.1.0", path = "../utils/kalloc" }
utils-kernelbase = { version = "0.1.0", path = "../utils/kernelbase" }
lazy_link = "0.1.1"
Expand Down
6 changes: 3 additions & 3 deletions driver-uefi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "driver-uefi"
version = "0.2.2"
edition = "2021"
version.workspace = true
edition.workspace = true

[lib]
path = "src/lib.rs"
Expand All @@ -22,7 +22,7 @@ kapi-kmodule = { version = "0.1.0", path = "../utils/kapi-kmodule" }
kdef = { version = "0.1.0", path = "../utils/kdef" }
seh = { version = "0.1.0", path = "../utils/seh" }
utils-imports = { version = "0.1.0", path = "../utils/imports" }
driver = { version = "0.2.1", path = "../driver" }
driver = { path = "../driver" }
kalloc = { version = "0.1.0", path = "../utils/kalloc" }
utils-kernelbase = { version = "0.1.0", path = "../utils/kernelbase" }
lazy_link = "0.1.1"
Expand Down

0 comments on commit 8322621

Please sign in to comment.