-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtech-team-haskell-trial.cabal
More file actions
55 lines (47 loc) · 1.38 KB
/
tech-team-haskell-trial.cabal
File metadata and controls
55 lines (47 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
cabal-version: 3.0
name: tech-team-haskell-trial
version: 0.1.0.0
license:
author: Jack Kelly
maintainer: haskell@bellroy.com
copyright: Copyright (C) 2025 Bellroy Pty Ltd
category: Demo
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall
executable client
import: warnings
main-is: Main.hs
build-depends: base ^>=4.19.2.0 || ^>=4.20.0.0 || ^>=4.21.0.0
hs-source-dirs: app/client
default-language: GHC2021
executable server
import: warnings
main-is: Main.hs
build-depends:
, api
, base ^>=4.19.2.0 || ^>=4.20.0.0 || ^>=4.21.0.0
, mtl ^>=2.3.1
, servant-server ^>=0.20.2
, sqlite-simple ^>=0.4.19
, warp ^>=3.4.7
hs-source-dirs: app/server
default-language: GHC2021
library api
import: warnings
exposed-modules: Api
build-depends:
, aeson ^>=2.2.3
, base ^>=4.19.2.0 || ^>=4.20.0.0 || ^>=4.21.0.0
, servant ^>=0.20.2
hs-source-dirs: src/api
default-language: GHC2021
test-suite tech-team-haskell-trial-test
import: warnings
default-language: GHC2021
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: base ^>=4.19.2.0 || ^>=4.20.0.0 || ^>=4.21.0.0