diff options
| author | Volpeon <github@volpeon.ink> | 2023-05-26 07:40:13 +0200 |
|---|---|---|
| committer | Volpeon <github@volpeon.ink> | 2023-05-26 07:40:13 +0200 |
| commit | 11d0fb47c292a0ca25a9c377499d2b221d97a5cb (patch) | |
| tree | e729e2a4508763b3073b7eae9a56bc9c6a9ca0f7 /jsonld.cabal | |
| download | hs-jsonld-11d0fb47c292a0ca25a9c377499d2b221d97a5cb.tar.gz hs-jsonld-11d0fb47c292a0ca25a9c377499d2b221d97a5cb.tar.bz2 hs-jsonld-11d0fb47c292a0ca25a9c377499d2b221d97a5cb.zip | |
Init
Diffstat (limited to 'jsonld.cabal')
| -rw-r--r-- | jsonld.cabal | 123 |
1 files changed, 123 insertions, 0 deletions
diff --git a/jsonld.cabal b/jsonld.cabal new file mode 100644 index 0000000..d4b3835 --- /dev/null +++ b/jsonld.cabal | |||
| @@ -0,0 +1,123 @@ | |||
| 1 | cabal-version: 1.12 | ||
| 2 | |||
| 3 | -- This file has been generated from package.yaml by hpack version 0.35.1. | ||
| 4 | -- | ||
| 5 | -- see: https://github.com/sol/hpack | ||
| 6 | |||
| 7 | name: jsonld | ||
| 8 | version: 0.1.0.0 | ||
| 9 | description: Please see the README on GitHub at <https://github.com/githubuser/magpie#readme> | ||
| 10 | author: Volpeon | ||
| 11 | maintainer: me@volpeon.ink | ||
| 12 | copyright: 2023 Volpeon | ||
| 13 | license: BSD3 | ||
| 14 | license-file: LICENSE | ||
| 15 | build-type: Simple | ||
| 16 | extra-source-files: | ||
| 17 | README.md | ||
| 18 | CHANGELOG.md | ||
| 19 | |||
| 20 | library | ||
| 21 | exposed-modules: | ||
| 22 | Data.JLD | ||
| 23 | Data.JLD.Context | ||
| 24 | Data.JLD.Control.Monad.RES | ||
| 25 | Data.JLD.Error | ||
| 26 | Data.JLD.Expansion | ||
| 27 | Data.JLD.Mime | ||
| 28 | Data.JLD.Model.ActiveContext | ||
| 29 | Data.JLD.Model.Direction | ||
| 30 | Data.JLD.Model.GraphObject | ||
| 31 | Data.JLD.Model.InverseContext | ||
| 32 | Data.JLD.Model.IRI | ||
| 33 | Data.JLD.Model.Keyword | ||
| 34 | Data.JLD.Model.Language | ||
| 35 | Data.JLD.Model.ListObject | ||
| 36 | Data.JLD.Model.NodeObject | ||
| 37 | Data.JLD.Model.TermDefinition | ||
| 38 | Data.JLD.Model.URI | ||
| 39 | Data.JLD.Model.ValueObject | ||
| 40 | Data.JLD.Monad | ||
| 41 | Data.JLD.Options | ||
| 42 | Data.JLD.Prelude | ||
| 43 | Data.JLD.Util | ||
| 44 | other-modules: | ||
| 45 | Paths_jsonld | ||
| 46 | hs-source-dirs: | ||
| 47 | src | ||
| 48 | default-extensions: | ||
| 49 | BlockArguments | ||
| 50 | FlexibleContexts | ||
| 51 | ImportQualifiedPost | ||
| 52 | LambdaCase | ||
| 53 | MultiWayIf | ||
| 54 | NoImplicitPrelude | ||
| 55 | OverloadedStrings | ||
| 56 | RankNTypes | ||
| 57 | RecordWildCards | ||
| 58 | TupleSections | ||
| 59 | ViewPatterns | ||
| 60 | ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wno-unticked-promoted-constructors -Wpartial-fields -Wredundant-constraints | ||
| 61 | build-depends: | ||
| 62 | aeson | ||
| 63 | , base >=4.7 && <5 | ||
| 64 | , containers | ||
| 65 | , flow | ||
| 66 | , indexed-traversable | ||
| 67 | , megaparsec | ||
| 68 | , modern-uri | ||
| 69 | , mtl | ||
| 70 | , rdf4h | ||
| 71 | , relude | ||
| 72 | , req | ||
| 73 | , tasty | ||
| 74 | , tasty-expected-failure | ||
| 75 | , tasty-hunit | ||
| 76 | , text | ||
| 77 | , transformers | ||
| 78 | , vector | ||
| 79 | , vector-algorithms | ||
| 80 | default-language: Haskell2010 | ||
| 81 | |||
| 82 | test-suite jsonld-test | ||
| 83 | type: exitcode-stdio-1.0 | ||
| 84 | main-is: Spec.hs | ||
| 85 | other-modules: | ||
| 86 | Test.Expansion | ||
| 87 | Paths_jsonld | ||
| 88 | hs-source-dirs: | ||
| 89 | test | ||
| 90 | default-extensions: | ||
| 91 | BlockArguments | ||
| 92 | FlexibleContexts | ||
| 93 | ImportQualifiedPost | ||
| 94 | LambdaCase | ||
| 95 | MultiWayIf | ||
| 96 | NoImplicitPrelude | ||
| 97 | OverloadedStrings | ||
| 98 | RankNTypes | ||
| 99 | RecordWildCards | ||
| 100 | TupleSections | ||
| 101 | ViewPatterns | ||
| 102 | ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wno-unticked-promoted-constructors -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N | ||
| 103 | build-depends: | ||
| 104 | aeson | ||
| 105 | , base >=4.7 && <5 | ||
| 106 | , containers | ||
| 107 | , flow | ||
| 108 | , indexed-traversable | ||
| 109 | , jsonld | ||
| 110 | , megaparsec | ||
| 111 | , modern-uri | ||
| 112 | , mtl | ||
| 113 | , rdf4h | ||
| 114 | , relude | ||
| 115 | , req | ||
| 116 | , tasty | ||
| 117 | , tasty-expected-failure | ||
| 118 | , tasty-hunit | ||
| 119 | , text | ||
| 120 | , transformers | ||
| 121 | , vector | ||
| 122 | , vector-algorithms | ||
| 123 | default-language: Haskell2010 | ||
