Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

gleam / compiler-wasm / Cargo.toml
633 B 27 lines
1[package] 2name = "gleam-wasm" 3version = "1.1.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] 13gleam-core = { path = "../compiler-core" } 14console_error_panic_hook = "0.1.7" 15serde-wasm-bindgen = "0.6" 16wasm-bindgen = { version = "0.2.92", 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 25 26[dev-dependencies] 27wasm-bindgen-test = "0.3.42"