reorder crate dependencies, workspace dependencies
This commit is contained in:
parent
e03efa2803
commit
b06c76f1e1
19
Cargo.toml
19
Cargo.toml
|
@ -14,22 +14,27 @@ debug = true
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
anyhow = "1.0.89"
|
anyhow = "1.0.89"
|
||||||
ash = "0.38.0"
|
|
||||||
ash-window = "0.13.0"
|
|
||||||
glam = {version = "0.29.0", features = ["bytemuck"]}
|
|
||||||
thiserror = "2.0"
|
thiserror = "2.0"
|
||||||
|
|
||||||
tracing = "0.1.40"
|
tracing = "0.1.40"
|
||||||
tracing-subscriber = {version ="0.3.18", features = ["env-filter"]}
|
tracing-subscriber = {version ="0.3.18", features = ["env-filter"]}
|
||||||
vk-mem = "0.4.0"
|
|
||||||
vk-sync = "0.1.6"
|
glam = {version = "0.29.0", features = ["bytemuck"]}
|
||||||
tinyvec = "1.8"
|
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
bitflags = "2.6"
|
bitflags = "2.6"
|
||||||
petgraph = "0.7"
|
|
||||||
|
|
||||||
|
ash = "0.38.0"
|
||||||
|
ash-window = "0.13.0"
|
||||||
|
vk-mem = "0.4.0"
|
||||||
|
vk-sync = "0.1.6"
|
||||||
|
|
||||||
|
tinyvec = "1.8"
|
||||||
indexmap = "2"
|
indexmap = "2"
|
||||||
|
petgraph = "0.7"
|
||||||
itertools = "0.14.0"
|
itertools = "0.14.0"
|
||||||
|
|
||||||
|
parking_lot = "0.12.3"
|
||||||
|
|
||||||
tokio = "1.42"
|
tokio = "1.42"
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
smol = "2.0"
|
smol = "2.0"
|
||||||
|
|
|
@ -4,33 +4,36 @@ version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tinyvec = {workspace = true}
|
tinyvec = { workspace = true }
|
||||||
rand = {workspace = true}
|
indexmap = { workspace = true }
|
||||||
|
petgraph = { workspace = true }
|
||||||
|
itertools = { workspace = true }
|
||||||
|
rand = { workspace = true }
|
||||||
|
parking_lot = { workspace = true }
|
||||||
|
glam = { workspace = true }
|
||||||
|
bitflags = { workspace = true }
|
||||||
|
|
||||||
cfg-if = "1.0.0"
|
thiserror = { workspace = true }
|
||||||
# tokio = {workspace = true, features = ["rt", "sync"]}
|
anyhow = { workspace = true }
|
||||||
dyn-clone = "1"
|
tracing = { workspace = true }
|
||||||
anyhow = "1.0.89"
|
|
||||||
ash = "0.38.0"
|
|
||||||
ash-window = "0.13.0"
|
|
||||||
glam = {workspace = true}
|
|
||||||
thiserror = {workspace = true}
|
|
||||||
tracing = "0.1.40"
|
|
||||||
vk-mem = "0.4.0"
|
|
||||||
crossbeam = "0.8.4"
|
|
||||||
parking_lot = "0.12.3"
|
|
||||||
smol.workspace = true
|
|
||||||
bitflags.workspace = true
|
|
||||||
petgraph.workspace = true
|
|
||||||
itertools.workspace = true
|
|
||||||
indexmap.workspace = true
|
|
||||||
futures.workspace = true
|
|
||||||
bytemuck = { version = "1.21.0", features = ["derive"] }
|
|
||||||
|
|
||||||
|
ash = { workspace = true }
|
||||||
|
ash-window = { workspace = true }
|
||||||
|
vk-mem = { workspace = true }
|
||||||
|
|
||||||
raw-window-handle = { workspace = true }
|
raw-window-handle = { workspace = true }
|
||||||
egui = { workspace = true , features = ["bytemuck"]}
|
egui = { workspace = true , features = ["bytemuck"]}
|
||||||
egui_winit_platform = { workspace = true }
|
egui_winit_platform = { workspace = true }
|
||||||
|
|
||||||
|
futures = { workspace = true }
|
||||||
|
smol = { workspace = true }
|
||||||
|
# tokio = {workspace = true, features = ["rt", "sync"]}
|
||||||
|
|
||||||
|
cfg-if = "1.0.0"
|
||||||
|
dyn-clone = "1"
|
||||||
|
crossbeam = "0.8.4"
|
||||||
|
bytemuck = { version = "1.21.0", features = ["derive"] }
|
||||||
|
cosmic-text = "0.12.1"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tracing-test = "0.2.5"
|
tracing-test = "0.2.5"
|
||||||
|
|
Loading…
Reference in a new issue