-
Notifications
You must be signed in to change notification settings - Fork 0
/
cyanide.cabal
71 lines (70 loc) · 3.21 KB
/
cyanide.cabal
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
name: cyanide
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/dgonyeo/cyanide#readme
license: GPL-3
license-file: LICENSE
author: Derek Gonyeo
maintainer: [email protected]
copyright: Apache 2.0
category: Web
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
executable cyanide
hs-source-dirs: src
main-is: Main.hs
default-language: Haskell2010
ghc-options: -threaded
other-modules: Cyanide.Data.Types
, Cyanide.Config
, Cyanide.Data.Units
, Cyanide.Data.Postgres
, Cyanide.Data.Glasses
, Cyanide.Data.Purchases
, Cyanide.Data.Recipes
, Cyanide.Data.Ingredients
, Cyanide.Data.IngredientClasses
, Cyanide.UI.App
, Cyanide.UI.State
, Cyanide.UI.GlassSelectionScreen
, Cyanide.UI.GlassDeletionScreen
, Cyanide.UI.GlassInputScreen
, Cyanide.UI.RecipeSelectionScreen
, Cyanide.UI.RecipeDetailScreen
, Cyanide.UI.RecipeInputScreen
, Cyanide.UI.RecipeInputIngredientScreen
, Cyanide.UI.IngredientSelectionScreen
, Cyanide.UI.IngredientInputScreen
, Cyanide.UI.IngredientDetailScreen
, Cyanide.UI.IngredientDeletionScreen
, Cyanide.UI.PurchaseDeletionScreen
, Cyanide.UI.PurchaseCreationScreen
, Cyanide.UI.Util
, Cyanide.UI.MainSelectionScreen
, Cyanide.UI.ErrorScreen
, Cyanide.UI.IngredientClassSelectionScreen
, Cyanide.UI.IngredientClassDeletionScreen
, Cyanide.UI.IngredientClassInputScreen
, Cyanide.UI.RecipeSelectionFilterScreen
, Cyanide.UI.RecipeDeletionScreen
build-depends: base >=4.7 && <5
, brick >=0.29 && <0.30
, postgresql-simple >=0.5 && <0.6
, either >=4.5 && <4.6
, transformers >=0.5 && <0.6
, text >=1.2 && <1.3
, brick >=0.29 && <0.30
, time >=1.8 && <1.9
, vty >=5.19 && <6.0
, vector >=0.12 && <0.13
, microlens >=0.4 && <0.5
, config-ini >=0.2 && <0.3
, directory >=1.3 && <1.4
, SHA >=1.6 && <1.7
, directory >=1.3 && <1.4
, process >=1.6 && <1.7
, bytestring >=0.10 && <0.11
, unix >=2.7 && <2.8
, random >=1.1 && <1.2