summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorKai Stevenson <kai@kaistevenson.com>2026-08-26 23:54:09 -0700
committerKai Stevenson <kai@kaistevenson.com>2026-08-26 23:54:09 -0700
commita272aa9d9b2c642871abe2dc3379e6ffcce8bf56 (patch)
tree0d9bc97a916e7df97281cc4d81cc0c292540517c /Cargo.lock
parent893502300c0206cf629ff4e9ed5b9327743ebd30 (diff)
sprite loader
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock33
1 files changed, 33 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 042caee..ba9ddca 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2448,11 +2448,14 @@ dependencies = [
"futures",
"fxhash",
"glam 0.33.3",
+ "png",
"puffin",
"puffin_http",
"rand",
"rapier2d",
"rayon",
+ "serde",
+ "toml",
"wgpu",
"wgpu-types",
"winit",
@@ -2800,6 +2803,15 @@ dependencies = [
]
[[package]]
+name = "serde_spanned"
+version = "1.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
+dependencies = [
+ "serde_core",
+]
+
+[[package]]
name = "shlex"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -3113,6 +3125,21 @@ dependencies = [
]
[[package]]
+name = "toml"
+version = "1.1.4+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3aace63f4bbcdfc2c965b059de67119c89c4017a70d633be6c104910f67056f5"
+dependencies = [
+ "indexmap",
+ "serde_core",
+ "serde_spanned",
+ "toml_datetime",
+ "toml_parser",
+ "toml_writer",
+ "winnow",
+]
+
+[[package]]
name = "toml_datetime"
version = "1.1.1+spec-1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -3143,6 +3170,12 @@ dependencies = [
]
[[package]]
+name = "toml_writer"
+version = "1.1.2+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
+
+[[package]]
name = "tracing"
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"