aboutsummaryrefslogtreecommitdiffstats
path: root/package.yaml
diff options
context:
space:
mode:
authorVolpeon <github@volpeon.ink>2023-05-26 07:40:13 +0200
committerVolpeon <github@volpeon.ink>2023-05-26 07:40:13 +0200
commit11d0fb47c292a0ca25a9c377499d2b221d97a5cb (patch)
treee729e2a4508763b3073b7eae9a56bc9c6a9ca0f7 /package.yaml
downloadhs-jsonld-11d0fb47c292a0ca25a9c377499d2b221d97a5cb.tar.gz
hs-jsonld-11d0fb47c292a0ca25a9c377499d2b221d97a5cb.tar.bz2
hs-jsonld-11d0fb47c292a0ca25a9c377499d2b221d97a5cb.zip
Init
Diffstat (limited to 'package.yaml')
-rw-r--r--package.yaml78
1 files changed, 78 insertions, 0 deletions
diff --git a/package.yaml b/package.yaml
new file mode 100644
index 0000000..5419b71
--- /dev/null
+++ b/package.yaml
@@ -0,0 +1,78 @@
1name: jsonld
2version: 0.1.0.0
3license: BSD3
4author: "Volpeon"
5maintainer: "me@volpeon.ink"
6copyright: "2023 Volpeon"
7
8extra-source-files:
9 - README.md
10 - CHANGELOG.md
11
12# Metadata used when publishing your package
13# synopsis: Short description of your package
14# category: Web
15
16# To avoid duplicated efforts in documentation and dealing with the
17# complications of embedding Haddock markup inside cabal files, it is
18# common to point users to the README.md file.
19description: Please see the README on GitHub at <https://github.com/githubuser/magpie#readme>
20
21dependencies:
22 - base >= 4.7 && < 5
23 - aeson
24 - containers
25 - flow
26 - indexed-traversable
27 - megaparsec
28 - modern-uri
29 - mtl
30 - rdf4h
31 - relude
32 - req
33 - tasty
34 - tasty-expected-failure
35 - tasty-hunit
36 - text
37 - transformers
38 - vector
39 - vector-algorithms
40
41default-extensions:
42 - BlockArguments
43 - FlexibleContexts
44 - ImportQualifiedPost
45 - LambdaCase
46 - MultiWayIf
47 - NoImplicitPrelude
48 - OverloadedStrings
49 - RankNTypes
50 - RecordWildCards
51 - TupleSections
52 - ViewPatterns
53
54ghc-options:
55 - -Wall
56 - -Wcompat
57 - -Widentities
58 - -Wincomplete-record-updates
59 - -Wincomplete-uni-patterns
60 - -Wmissing-export-lists
61 - -Wmissing-home-modules
62 - -Wno-unticked-promoted-constructors
63 - -Wpartial-fields
64 - -Wredundant-constraints
65
66library:
67 source-dirs: src
68
69tests:
70 jsonld-test:
71 main: Spec.hs
72 source-dirs: test
73 ghc-options:
74 - -threaded
75 - -rtsopts
76 - -with-rtsopts=-N
77 dependencies:
78 - jsonld