Files
kpl20/shell/Cargo.toml
Joey Eamigh be3a13eee1 happy bday!
2024-05-26 22:45:45 -04:00

29 lines
572 B
TOML

[package]
name = "shell"
version = "0.1.0"
authors = ["Joey Eamigh <55670930+JoeyEamigh@users.noreply.github.com>"]
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["console_error_panic_hook"]
[dependencies]
wasm-bindgen = "0.2.84"
yansi = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
once_cell = "1"
rand = "0.8"
getrandom = { version = "0.2", features = ["js"] }
console_error_panic_hook = { version = "0.1.7", optional = true }
[dev-dependencies]
wasm-bindgen-test = "0.3.34"
[profile.release]
opt-level = "s"