1
1
name : dotenv
2
- version : 0.11.0.0
2
+ version : 0.11.0.1
3
3
synopsis : Loads environment variables from dotenv files
4
4
homepage : https://github.com/stackbuilders/dotenv-hs
5
5
description :
@@ -82,12 +82,13 @@ executable dotenv
82
82
default-language : Haskell2010
83
83
84
84
library
85
- exposed-modules : Configuration.Dotenv
86
- , Configuration.Dotenv.Environment
87
- other-modules : Configuration.Dotenv.Parse
88
- , Configuration.Dotenv.ParsedVariable
89
- , Configuration.Dotenv.Text
90
- , Configuration.Dotenv.Types
85
+ exposed-modules : Configuration.Dotenv
86
+ , Configuration.Dotenv.Internal
87
+ , Configuration.Dotenv.Environment
88
+ other-modules : Configuration.Dotenv.Parse
89
+ , Configuration.Dotenv.ParsedVariable
90
+ , Configuration.Dotenv.Text
91
+ , Configuration.Dotenv.Types
91
92
92
93
build-depends : base >= 4.9 && < 5.0
93
94
, directory
@@ -110,32 +111,19 @@ library
110
111
111
112
test-suite dotenv-test
112
113
type : exitcode-stdio-1.0
113
- hs-source-dirs : spec, src
114
+ hs-source-dirs : spec
114
115
main-is : Spec.hs
115
116
other-modules : Configuration.DotenvSpec
116
117
, Configuration.Dotenv.TextSpec
117
118
, Configuration.Dotenv.ParseSpec
118
- , Configuration.Dotenv
119
- , Configuration.Dotenv.Environment
120
- , Configuration.Dotenv.Text
121
- , Configuration.Dotenv.Types
122
- , Configuration.Dotenv.Parse
123
- , Configuration.Dotenv.ParsedVariable
124
119
125
120
build-depends : base >= 4.9 && < 5.0
126
- , base-compat >= 0.4
127
- , containers
128
121
, dotenv
129
- , directory
130
122
, megaparsec
131
123
, hspec
132
124
, process
133
- , shellwords
134
125
, text
135
- , exceptions >= 0.8 && < 0.11
136
126
, hspec-megaparsec >= 2.0 && < 3.0
137
- , mtl
138
- , data-default-class >= 0.1.2 && < 0.2
139
127
140
128
build-tools : hspec-discover >= 2.0 && < 3.0
141
129
0 commit comments