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