From 4ba01304ede403816de069357ca5aeff535ccac7 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Thu, 3 Apr 2025 21:31:55 -0400 Subject: Binary saves --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 19f7eea..ea4902b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,15 +17,16 @@ opt-level = 2 [dependencies] glow = {version = "=0.13.1", features = []} # rendering tobj = "*" # loader for .obj meshes loader -gltf = {path = "deps/gltf", features = ["extras", "names", "utils"]} # loader for .gltf scenes +gltf = {path = "deps/gltf", features = ["extras", "import", "names", "utils"]} # loader for .gltf scenes # gltf = {version = "*", features = ["extras", "names"]} # model loader -image = "*" # texture loader +image = { version = "0.25", default-features = false, features = ["jpeg", "png"] } # texture loader fontdue = "*" # truetype fonts glam = "0.29" # linear algebra log = "*" # logging rand = {version = "=0.8.5", features = ["small_rng"]} # rng serde = {version = "*", features = ["derive"]} # serialization serde_json = "*" # serialize JSON +bincode = {version = "*", features = ["serde"]} # binary serialization enum-map = "*" # fast maps with enums as keys bimap = "*" # bijective maps reqwest = "*" # http requests @@ -49,7 +50,6 @@ web-sys = { version = "*", features = ["Document", "Window", "Element", "HtmlCan [target.'cfg(not(target_arch = "wasm32"))'.dependencies] env_logger = "*" # configurable logging to stdout -tokio = { version = "*", features = ["full"] } # async runtime glfw = { path = "deps/glfw-rs", features = ["serde"] } # window management -kira = "=0.9.6" # audio +kira = { version = "=0.9.6", default-features = false, features = ["cpal", "ogg", "wav"] } # audio directories = { path = "deps/directories-rs" } # standard system directories \ No newline at end of file -- cgit v1.2.3