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

Configure Feed

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

gleam / test / project_erlang / gleam.toml
1.2 kB 39 lines
1# SPDX-License-Identifier: Apache-2.0 2# SPDX-FileCopyrightText: 2021 The Gleam contributors 3 4name = "project" 5version = "0.1.0" 6 7[dependencies] 8# These are Gleam deps 9gleam_stdlib = "~> 0.18" 10gleam_erlang = "~> 0.5" 11 12# This is a rebar3 dep that uses files in ./priv 13certifi = "~> 2.8" 14# This is a rebar3 dep that uses files in ./ebin 15cowboy = "~> 2.9" 16# This is a mix dep that uses files in ./priv 17countries = "~> 1.6" 18 19# This is both a mix and a rebar3 dep! 20# We want to default to using rebar3 as that is the build tool that is more 21# likely to be installed. 22ssl_verify_fun = "~> 1.1" 23 24# This is a rebar3 dep that calls make to compile C into a .so file that is 25# loaded at runtime from ./priv 26# TODO: replace this with a package with a nif that compiles super fast. Perhaps 27# just a hello world. 28bcrypt = "~> 1.1" 29# This is a rebar3 dep that output files in $REBAR_BARE_COMPILER_OUTPUT_DIR/priv 30# and requires absolute paths 31ezstd = "~> 1.1" 32 33# This is a rebar3 dep where the application name (hpack, used by the BEAM) 34# doesn't match the package name (hpack_erl, used by Hex). 35hpack_erl = "~> 0.1" 36gleam_javascript = "~> 0.7" 37 38[dev_dependencies] 39gleeunit = "~> 1.0"