Skip to content
Merged
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
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bp3d-os"
version = "2.2.2"
version = "2.2.3"
authors = ["Yuri Edward <[email protected]>"]
edition = "2021"
description = "Operating System tools designed for BlockProject3D"
Expand All @@ -15,9 +15,9 @@ categories = ["os"]
[dependencies]

# Normal dependencies
time = { version = "0.3.43", optional = true }
time = { version = "0.3.44", optional = true }
bp3d-util = { version = "2.2.0", features = [], optional = true }
bp3d-debug = { version = "1.0.1", optional = true }
bp3d-debug = { version = "1.0.2", optional = true }

# Apple and BSD
[target.'cfg(not(windows))'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion module_test/test_mod/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ crate-type = ["rlib", "cdylib"]
bp3d-os-build = { version = "1.1.0", path = "../../build" }

[dependencies]
bp3d-os = { version = "2.2.2", path = "../../core", features = ["module"] }
bp3d-os = { version = "2.2.3", path = "../../core", features = ["module"] }
bp3d-debug = "1.0.0"
2 changes: 1 addition & 1 deletion module_test/testbin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2024"
publish = false

[dependencies]
bp3d-os = { version = "2.2.2", path = "../../core", features = ["module"] }
bp3d-os = { version = "2.2.3", path = "../../core", features = ["module"] }
2 changes: 1 addition & 1 deletion shelltestbin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2024"
publish = false

[dependencies]
bp3d-os = { version = "2.2.2", path = "../core", features = ["shell"] }
bp3d-os = { version = "2.2.3", path = "../core", features = ["shell"] }
Loading