20 lines
565 B
TOML
20 lines
565 B
TOML
[package]
|
|
name = "nodarium_utils"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "A collection of utilities for Nodarium"
|
|
license = "MIT"
|
|
repository = "https://github.com/jim-fx/nodes"
|
|
|
|
[features]
|
|
default = ["console_error_panic_hook"]
|
|
|
|
[dependencies]
|
|
wasm-bindgen = "0.2.92"
|
|
web-sys = { version = "0.3.69", features = ["console"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
|
|
console_error_panic_hook = { version = "0.1.7", optional = true }
|
|
glam = "0.27.0"
|
|
noise = "0.9.0"
|