-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdotenv-micro.cabal
42 lines (39 loc) · 1.43 KB
/
dotenv-micro.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
name: dotenv-micro
version: 0.1.0.1
synopsis: Tiny dotenv library
description: Loading secrets and confidential configuration values from outside the program code is a security best practice. This library enables that with a tiny dependency footprint.
homepage: https://github.com/unfoldml/dotenv-micro
license: BSD3
license-file: LICENSE
author: Marco Zocca
maintainer: Marco Zocca
copyright: 2023 Marco Zocca, UnfoldML
category: Configuration
build-type: Simple
extra-source-files: README.md
CHANGELOG.md
cabal-version: >=1.10
tested-with: GHC == 9.4.5
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules: DotEnv.Micro
build-depends: base >= 4.7 && < 5
, directory
ghc-options: -Wall
-Wcompat
-- test-suite spec
-- default-language: Haskell2010
-- type: exitcode-stdio-1.0
-- hs-source-dirs: test
-- main-is: Spec.hs
-- other-modules: LibSpec
-- build-depends: base
-- , dotenv-micro
-- , hspec
-- , QuickCheck
-- ghc-options: -Wall
-- -Wcompat
source-repository head
type: git
location: https://github.com/unfoldml/dotenv-micro