2024-02-28 21:21:42 +01:00
|
|
|
[package]
|
2024-05-02 14:15:20 +02:00
|
|
|
name = "nodarium_utils"
|
2024-02-28 21:21:42 +01:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-05-02 14:21:54 +02:00
|
|
|
description = "A collection of utilities for Nodarium"
|
|
|
|
license = "MIT"
|
|
|
|
repository = "https://github.com/jim-fx/nodes"
|
2024-02-28 21:21:42 +01:00
|
|
|
|
2024-04-15 18:46:34 +02:00
|
|
|
[features]
|
|
|
|
default = ["console_error_panic_hook"]
|
|
|
|
|
2024-02-28 21:21:42 +01:00
|
|
|
[dependencies]
|
2024-04-04 19:17:27 +02:00
|
|
|
wasm-bindgen = "0.2.92"
|
2024-04-18 00:02:50 +02:00
|
|
|
web-sys = { version = "0.3.69", features = ["console"] }
|
2024-04-05 19:38:10 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
|
2024-04-15 18:46:34 +02:00
|
|
|
console_error_panic_hook = { version = "0.1.7", optional = true }
|
2024-04-17 16:39:56 +02:00
|
|
|
glam = "0.27.0"
|
2024-04-23 20:35:56 +02:00
|
|
|
noise = "0.9.0"
|