parser/spago.dhall

28 lines
645 B
Plaintext
Raw Permalink Normal View History

2023-12-17 12:57:26 +01: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.
-}
{ name = "parser"
, dependencies =
[ "arrays"
, "console"
, "control"
, "effect"
2024-01-13 04:17:03 +01:00
, "either"
, "integers"
, "maybe"
, "prelude"
, "strings"
]
2023-12-17 12:57:26 +01:00
, packages = ./packages.dhall
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
}