summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2025-02-16 04:46:35 -0500
committerLLLL Colonq <llll@colonq>2025-02-16 04:46:44 -0500
commit2c4da6fefeb13e40be3948dd24524b82adcac3df (patch)
tree59dcc646df056302c354ff3ed3e25fb47784ab40 /Cargo.toml
parent097c060deed5abe914631c0b0ec3a23d17eb3d56 (diff)
Fix saves
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml12
1 files changed, 7 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 23dd274..55627e3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -29,6 +29,7 @@ glam = "*" # linear algebra
log = "*" # logging
rand = {version = "*", features = ["small_rng"]} # rng
serde = {version = "*", features = ["derive"]} # serialization
+serde_json = "*" # serialize JSON
enum-map = "*" # fast maps with enums as keys
bimap = "*" # bijective maps
reqwest = "*" # http requests
@@ -44,10 +45,11 @@ tracing-wasm = "*" # trace performance in browser
wasm-bindgen = "*" # interface with javascript
wasm-bindgen-futures = "*" # interface with async javascript
js-sys = "*" # browser APIs to interact with JS runtime (e.g. run WASM)
-web-sys = { version = "*", features = ["Document", "Window", "Element", "HtmlCanvasElement", "WebGl2RenderingContext", "Headers", "Request", "RequestInit", "RequestMode", "Response", "Performance", "PerformanceTiming", "AudioContext", "AudioNode", "AudioDestinationNode", "AudioBuffer", "AudioBufferSourceNode", "BinaryType", "Blob", "CloseEvent", "ErrorEvent", "FileReader", "MessageEvent", "ProgressEvent", "WebSocket"] }
+web-sys = { version = "*", features = ["Document", "Window", "Element", "HtmlCanvasElement", "WebGl2RenderingContext", "Headers", "Request", "RequestInit", "RequestMode", "Response", "Performance", "PerformanceTiming", "AudioContext", "AudioNode", "AudioDestinationNode", "AudioBuffer", "AudioBufferSourceNode", "BinaryType", "Blob", "CloseEvent", "ErrorEvent", "FileReader", "MessageEvent", "ProgressEvent", "WebSocket", "Storage"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
-env_logger = "*"
-glfw = { path = "deps/glfw-rs", features = ["serde"] }
-kira = "0.9.6"
-tokio = { version = "*", features = ["full"] }
+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
+directories = { path = "deps/directories-rs" } # standard system directories \ No newline at end of file