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
750 B 31 lines
1# SPDX-License-Identifier: Apache-2.0 2# SPDX-FileCopyrightText: 2021 The Gleam contributors 3 4[package] 5name = "gleam-wasm" 6version = "1.17.0" 7authors = ["Louis Pilfold <louis@lpil.uk>"] 8edition = "2024" 9license = "Apache-2.0" 10 11[lib] 12# This package compiles to wasm 13crate-type = ["cdylib", "rlib"] 14 15[dependencies] 16gleam-core = { path = "../compiler-core" } 17console_error_panic_hook = "0" 18serde-wasm-bindgen = "0" 19wasm-bindgen = { version = "0.2", features = ["serde-serialize"] } 20tracing-wasm = "*" 21camino.workspace = true 22hexpm = { path = "../hexpm" } 23im.workspace = true 24itertools.workspace = true 25serde.workspace = true 26termcolor.workspace = true 27tracing.workspace = true 28getrandom.workspace = true 29 30[dev-dependencies] 31wasm-bindgen-test = "0.3.42"