Fork of daniellemaywood.uk/gleam — Wasm codegen work
642 B
28 lines
1[package]
2name = "gleam-wasm"
3version = "1.0.0"
4authors = ["Louis Pilfold <louis@lpil.uk>"]
5edition = "2021"
6license-file = "LICENCE"
7
8[lib]
9# This package compiles to wasm
10crate-type = ["cdylib", "rlib"]
11
12[dependencies]
13console_error_panic_hook = "0.1.7"
14gleam-core = { path = "../compiler-core" }
15hexpm = "2.1.0"
16itertools = "0.10.1"
17serde = { version = "1.0", features = ["derive"] }
18serde-wasm-bindgen = "0.4"
19wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
20tracing-wasm = "*"
21tracing = "*"
22termcolor = "1.1.2"
23camino = "1.1.6"
24# Immutable data structures
25im = "15.1.0"
26
27[dev-dependencies]
28wasm-bindgen-test = "0.3.28"