Native Lightspeed LiveView app on Mist (Gleam)
0

Configure Feed

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

star / gleam.toml
709 B 25 lines
1name = "star" 2version = "1.0.0" 3target = "erlang" 4 5# Fill out these fields if you intend to generate HTML documentation or publish 6# your project to the Hex package manager. 7# 8# description = "" 9# licences = ["Apache-2.0"] 10# repository = { type = "github", user = "", repo = "" } 11# links = [{ title = "Website", href = "" }] 12# 13# For a full reference of all the available options, you can have a look at 14# https://gleam.run/writing-gleam/gleam-toml/. 15 16[dependencies] 17gleam_stdlib = ">= 1.0.0 and < 2.0.0" 18gleam_erlang = ">= 1.3.0 and < 2.0.0" 19gleam_http = ">= 4.0.0 and < 5.0.0" 20lightspeed = ">= 1.1.1" 21mist = ">= 6.0.0" 22gleam_otp = ">= 1.2.0 and < 2.0.0" 23 24[dev_dependencies] 25gleeunit = ">= 1.0.0 and < 2.0.0"