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
342 B 17 lines
1[package] 2name = "gleam-wasm" 3version = "0.18.0-rc3" 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" } 14wasm-bindgen = "0.2.78" 15 16[dev-dependencies] 17wasm-bindgen-test = "0.3.28"