A Discord API Library for Gleam! 馃挮
0

Configure Feed

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

grom / gleam.toml
907 B 31 lines
1name = "grom" 2version = "6.0.0" 3description = "A Gleamy library for the Discord API 馃専" 4licenses = ["MIT"] 5repository = { type = "github", user = "folospior", repo = "grom" } 6internal_modules = [ 7 "grom/internal/*" 8] 9 10# [documentation] 11# pages = [ 12# { title = "Your first bot", path = "01-your-first-bot.html", source = "./pages/01-your-first-bot.md"} 13# ] 14 15[dependencies] 16gleam_erlang = ">= 1.3.0 and < 2.0.0" 17gleam_http = ">= 4.0.0 and < 5.0.0" 18gleam_httpc = ">= 5.0.0 and < 6.0.0" 19gleam_json = ">= 3.0.1 and < 4.0.0" 20gleam_otp = ">= 1.1.0 and < 2.0.0" 21gleam_stdlib = ">= 0.44.0 and < 2.0.0" 22gleam_time = ">= 1.1.0 and < 2.0.0" 23multipart_form = ">= 1.1.0 and < 2.0.0" 24operating_system = ">= 1.0.1 and < 2.0.0" 25status_code = ">= 1.0.0 and < 2.0.0" 26stratus = ">= 3.0.0 and < 4.0.0" 27splitter = ">= 1.2.0 and < 2.0.0" 28kryptos = ">= 1.4.0 and < 2.0.0" 29 30[dev-dependencies] 31gleeunit = ">= 1.0.0 and < 2.0.0"