generated from fission-codes/project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.yaml
121 lines (115 loc) · 2.34 KB
/
package.yaml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
name: ipfs
version: '1.4.1'
synopsis: Access IPFS locally and remotely
description: Interact with the IPFS network by shelling out to a local IPFS node or communicating via the HTTP interface of a remote IPFS node.
category: Network
author:
- Brooklyn Zelenka
- Daniel Holmgren
- Steven Vandevelde
- James Walker
maintainer:
copyright: © 2023 Fission Internet Software Services for Open Networks Inc.
license: Apache-2.0
license-file: LICENSE
github: fission-suite/ipfs-haskell
tested-with: GHC==9.2.7
extra-source-files:
- README.md
ghc-options:
- -Wall
- -Wcompat
- -Widentities
# Warn about too little
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wmissing-export-lists
- -Wpartial-fields
# Warn about too much
- -Wredundant-constraints
# Prettier Development
- -fhide-source-paths
default-extensions:
- ApplicativeDo
- BangPatterns
- BinaryLiterals
- BlockArguments
- ConstraintKinds
- DataKinds
- DeriveAnyClass
- DeriveFoldable
- DeriveFunctor
- DeriveGeneric
- DeriveLift
- DeriveTraversable
- DerivingStrategies
- DuplicateRecordFields
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- GADTs
- GeneralizedNewtypeDeriving
- KindSignatures
- LambdaCase
- LiberalTypeSynonyms
- MultiParamTypeClasses
- MultiWayIf
- NamedFieldPuns
- NoImplicitPrelude
- NoMonomorphismRestriction
- OverloadedStrings
- OverloadedLabels
- OverloadedLists
- PostfixOperators
- RankNTypes
- RecordWildCards
- ScopedTypeVariables
- StandaloneDeriving
- TupleSections
- TypeApplications
- TypeFamilies
- TypeSynonymInstances
- TemplateHaskell
- TypeOperators
- ViewPatterns
dependencies:
- aeson
- base < 5
- bytestring
- envy
- flow
- Glob
- http-media
- lens
- monad-logger
- network-ip
- regex-compat
- rio
- servant
- servant-client
- servant-multipart
- servant-multipart-api
- servant-multipart-client
- swagger2
- text
- vector
library:
source-dirs: library
generated-exposed-modules:
- Paths_ipfs
tests:
ipfs-doctest:
main: Main.hs
source-dirs: test/doctest
dependencies:
- directory
- directory-tree
- doctest
- Glob
- lens-aeson
- QuickCheck
- yaml