diff options
| author | LLLL Colonq <llll@colonq> | 2025-04-03 21:31:55 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2025-04-03 21:31:55 -0400 |
| commit | 4ba01304ede403816de069357ca5aeff535ccac7 (patch) | |
| tree | 9dd69c0ac84ab788e6cb95543cc5962907b9861d /Cargo.toml | |
| parent | 1e0f17abbc9ae45aee8d9dde875fad3aabcac18b (diff) | |
Binary saves
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |
