Bootstrapped my haskell client
This commit is contained in:
parent
36cc33f9e9
commit
a775330b4f
12 changed files with 389 additions and 2 deletions
62
haskell/package.yaml
Normal file
62
haskell/package.yaml
Normal file
|
@ -0,0 +1,62 @@
|
|||
name: spacetraders
|
||||
version: 0.1.0.0
|
||||
github: "adyxax/spacetraders"
|
||||
license: EUPL-1.2
|
||||
author: "Julien Dessaux"
|
||||
maintainer: "julien.dessaux@adyxax.org"
|
||||
copyright: "2023 Julien Dessaux"
|
||||
|
||||
extra-source-files:
|
||||
- README.md
|
||||
- CHANGELOG.md
|
||||
|
||||
synopsis: My spacetraders.io game client implementation
|
||||
category: Games
|
||||
|
||||
description: Please see the README on GitHub at <https://github.com/adyxax/spacetraders#readme>
|
||||
|
||||
dependencies:
|
||||
- aeson
|
||||
- base >= 4.7 && < 5
|
||||
- bytestring
|
||||
- http-conduit
|
||||
- http-types
|
||||
- sqlite-simple
|
||||
- text
|
||||
- raw-strings-qq
|
||||
|
||||
ghc-options:
|
||||
- -Wall
|
||||
- -Wcompat
|
||||
- -Widentities
|
||||
- -Wincomplete-record-updates
|
||||
- -Wincomplete-uni-patterns
|
||||
- -Wmissing-export-lists
|
||||
- -Wmissing-home-modules
|
||||
- -Wpartial-fields
|
||||
- -Wredundant-constraints
|
||||
|
||||
library:
|
||||
source-dirs: src
|
||||
|
||||
executables:
|
||||
spacetraders-exe:
|
||||
main: Main.hs
|
||||
source-dirs: app
|
||||
ghc-options:
|
||||
- -threaded
|
||||
- -rtsopts
|
||||
- -with-rtsopts=-N
|
||||
dependencies:
|
||||
- spacetraders
|
||||
|
||||
tests:
|
||||
spacetraders-test:
|
||||
main: Spec.hs
|
||||
source-dirs: test
|
||||
ghc-options:
|
||||
- -threaded
|
||||
- -rtsopts
|
||||
- -with-rtsopts=-N
|
||||
dependencies:
|
||||
- spacetraders
|
Loading…
Add table
Add a link
Reference in a new issue