Skip to content
This repository has been archived by the owner on Nov 18, 2023. It is now read-only.

Update non-major dependencies #92

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
736 changes: 403 additions & 333 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ opt-level = 3
[workspace.dependencies]
parking_lot = "0.12"
thiserror = "1.0"
uuid = "1.3"
bevy = "0.10"
uuid = "1.4"
bevy = "0.11"
egui = "0.22"
bevy_math = "0.10"
bevy_ecs = "0.10"
bevy_math = "0.11"
bevy_ecs = "0.11"
once_cell = "1.18"
maybe-owned = "0.3.4"
egui_cable = "0.5"
Expand Down
2 changes: 1 addition & 1 deletion crates/apps/desk-x/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dworkspace-codebase = { package = "dworkspace-codebase", path = "../../component
deskc-ids = { package = "deskc-ids", path = "../../components/deskc-ids", version = "0.0.0" }

bevy = { workspace = true }
bevy-inspector-egui = { version = "0.18", optional = true }
bevy-inspector-egui = { version = "0.19", optional = true }
console_error_panic_hook = "0.1"
web-sys = "0.3"
egui = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/components/deskc-ids/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ readme = "../../../README.md"
edition = "2021"

[dependencies]
uuid = { version = "1.3", features = ["v4", "serde"] }
uuid = { version = "1.4", features = ["v4", "serde"] }
serde = { version = "1.0", features = ["derive"] }
2 changes: 1 addition & 1 deletion crates/components/deskvm-dprocess/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ edition = "2021"
ty = { path = "../../components/deskc-type", version = "0.0.0", package = "deskc-type" }

anyhow = "1.0"
uuid = { version = "1.3", features = ["v4"] }
uuid = { version = "1.4", features = ["v4"] }
parking_lot = { workspace = true }
mry = "0.2.6"
serde = { version = "1.0", features = ["derive"] }
2 changes: 1 addition & 1 deletion crates/plugins/desk-egui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ desk-theme = { workspace = true }
dworkspace = { workspace = true }

bevy = { workspace = true }
bevy_egui = "0.20"
bevy_egui = "0.21"
2 changes: 1 addition & 1 deletion crates/plugins/desk-rapier2d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ desk-plugin = { workspace = true }
physics = { package = "desk-physics", path = "../../components/desk-physics", version = "0.0.0" }

bevy = { workspace = true }
bevy_rapier2d = { version = "0.21", features = ["wasm-bindgen", "debug-render"] }
bevy_rapier2d = { version = "0.22", features = ["wasm-bindgen", "debug-render"] }
2 changes: 1 addition & 1 deletion crates/systems/deskc-hirgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ast = { path = "../../components/deskc-ast", version = "0.0.0", package = "deskc
hir = { path = "../../components/deskc-hir", version = "0.0.0", package = "deskc-hir" }
dson = { path = "../../components/dson", version = "0.0.0", package = "dson" }

pretty_assertions = "1.3.0"
pretty_assertions = "1.4.0"
thiserror = { workspace = true }

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions crates/systems/deskc-syntax-minimalist/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ ast = { path = "../../components/deskc-ast", version = "0.0.0", package = "deskc
errors = { path = "../../components/deskc-errors", version = "0.0.0", package = "deskc-errors" }
dson = { path = "../../components/dson", version = "0.0.0", package = "dson" }

parol_runtime = { version = "0.16.0", features = ["auto_generation"] }
parol_runtime = { version = "0.18.0", features = ["auto_generation"] }
anyhow = "1.0"
thiserror = { workspace = true }
uuid = { version = "1.3", features = ["v4"] }
uuid = { version = "1.4", features = ["v4"] }

[build-dependencies]
parol = { version = "0.21.5" }
parol = { version = "0.23.1" }

[dev-dependencies]
env_logger = "0.10.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/systems/deskc-typeinfer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ty = { path = "../../components/deskc-type", version = "0.0.0", package = "deskc
errors = { path = "../../components/deskc-errors", version = "0.0.0", package = "deskc-errors" }

thiserror = { workspace = true }
itertools = "0.10"
itertools = "0.11"

[dev-dependencies]
deskc = { path = "../deskc", version = "0.0.0", package = "deskc" }
Expand Down
2 changes: 1 addition & 1 deletion crates/systems/deskvm-miri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dson = { path = "../../components/dson", version = "0.0.0", package = "dson" }

serde = { version = "1.0", features = ["derive"] }
anyhow = "1.0"
strum = { version = "0.24", features = ["derive"] }
strum = { version = "0.25", features = ["derive"] }
once_cell = { workspace = true }
thiserror = { workspace = true }

Expand Down