-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb-server.cabal
More file actions
31 lines (29 loc) · 801 Bytes
/
Copy pathweb-server.cabal
File metadata and controls
31 lines (29 loc) · 801 Bytes
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
cabal-version: 3.4
name: web-server
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: Avi Caspe
maintainer: avi.caspe@gmail.com
-- copyright:
build-type: Simple
-- extra-source-files:
common warnings
ghc-options: -Wall
executable Web-Server
import: warnings
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base,
servant-server,
warp,
wai,
text,
directory,
time,
hs-source-dirs: src
default-extensions: LambdaCase
default-language: Haskell2010