logict/spago.dhall

19 lines
590 B
Plaintext
Raw Normal View History

2023-02-27 20:32:51 -08:00
{-
Welcome to a Spago project!
You can edit this file as you like.
Need help? See the following resources:
- Spago documentation: https://github.com/purescript/spago
- Dhall language tour: https://docs.dhall-lang.org/tutorials/Language-Tour.html
When creating a new Spago project, you can use
`spago init --no-comments` or `spago init -C`
to generate this file without the comments in this block.
-}
2023-02-28 19:03:17 -08:00
{ name = "logict"
, dependencies =
[ "control", "lists", "maybe", "prelude", "transformers", "tuples" ]
2023-02-27 20:32:51 -08:00
, packages = ./packages.dhall
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
}