this repo has no description
1[package]
2name = "gleam-wasm"
3version = "1.13.0-rc1"
4authors = ["Louis Pilfold <louis@lpil.uk>"]
5edition = "2024"
6license-file = "LICENCE"
7
8[lib]
9# This package compiles to wasm
10crate-type = ["cdylib", "rlib"]
11
12[dependencies]
13gleam-core = { path = "../compiler-core" }
14console_error_panic_hook = "0"
15serde-wasm-bindgen = "0"
16wasm-bindgen = { version = "=0.2.99", features = ["serde-serialize"] }
17tracing-wasm = "*"
18camino.workspace = true
19hexpm.workspace = true
20im.workspace = true
21itertools.workspace = true
22serde.workspace = true
23termcolor.workspace = true
24tracing.workspace = true
25getrandom.workspace = true
26
27[dev-dependencies]
28wasm-bindgen-test = "0.3.42"