chore: added the chrono crate back to the Cargo.toml of the crates

This commit is contained in:
lisk77 2025-04-15 20:31:33 +02:00
parent 0d6d55b9d8
commit 982323f671
7 changed files with 11 additions and 4 deletions

View file

@ -16,6 +16,7 @@ winit = { version = "0.29", features = ["rwh_05"] }
pollster = "0.3" pollster = "0.3"
winit_input_helper = "0.16.0" winit_input_helper = "0.16.0"
crossbeam-channel = "0.5.14" crossbeam-channel = "0.5.14"
chrono = "0.4.40"
[dependencies.image] [dependencies.image]
version = "0.24" version = "0.24"

View file

@ -5,4 +5,5 @@ edition = "2021"
[dependencies] [dependencies]
comet_math = { path = "../comet_math" } comet_math = { path = "../comet_math" }
wgpu = { version = "22.0" } wgpu = { version = "22.0" }
chrono = "0.4.40"

View file

@ -10,4 +10,5 @@ comet_log = { path = "../comet_log" }
comet_structs = { path = "../comet_structs" } comet_structs = { path = "../comet_structs" }
comet_colors = { path = "../comet_colors" } comet_colors = { path = "../comet_colors" }
wgpu = { version = "22.0" } wgpu = { version = "22.0" }
bit-set = "0.8.0" bit-set = "0.8.0"
chrono = "0.4.40"

View file

@ -6,4 +6,5 @@ edition = "2021"
[dependencies] [dependencies]
comet_log = { path = "../comet_log" } comet_log = { path = "../comet_log" }
rand = "0.9.0-beta.1" rand = "0.9.0-beta.1"
image = { version = "0.24", default_features = false, features = ["png", "jpeg", "hdr"] } image = { version = "0.24", default_features = false, features = ["png", "jpeg", "hdr"] }
chrono = "0.4.40"

View file

@ -13,4 +13,5 @@ comet_structs = { path = "../comet_structs" }
bytemuck = { version = "1.16", features = [ "derive" ] } bytemuck = { version = "1.16", features = [ "derive" ] }
cgmath = "0.18" cgmath = "0.18"
wgpu = { version = "22.0", features = ["glsl", "wgsl", "naga-ir"]} wgpu = { version = "22.0", features = ["glsl", "wgsl", "naga-ir"]}
winit = { version = "0.29", features = ["rwh_05"] } winit = { version = "0.29", features = ["rwh_05"] }
chrono = "0.4.40"

View file

@ -9,6 +9,7 @@ wgpu = { version = "22.0", features = ["spirv"] }
anyhow = "1.0" anyhow = "1.0"
bytemuck = { version = "1.16", features = [ "derive" ] } bytemuck = { version = "1.16", features = [ "derive" ] }
ab_glyph = "0.2.29" ab_glyph = "0.2.29"
chrono = "0.4.40"
[dependencies.image] [dependencies.image]
version = "0.24" version = "0.24"

View file

@ -5,3 +5,4 @@ edition = "2021"
[dependencies] [dependencies]
comet_log = { path = "../comet_log" } comet_log = { path = "../comet_log" }
chrono = "0.4.40"