-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
22 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
;;; Directory Local Variables | ||
;;; For more information see (info "(emacs) Directory Variables") | ||
|
||
((haskell-mode | ||
(intero-targets "etc:lib" "etc:test:etc-testsuite"))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,16 +3,16 @@ | |
-- see: https://github.com/sol/hpack | ||
|
||
name: etc | ||
version: 0.2.0.1 | ||
version: 0.3.0.0 | ||
synopsis: Declarative configuration spec for Haskell projects | ||
description: `etc` gathers configuration values from multiple sources (cli options, OS | ||
environment variables, files) using a declarative spec file that defines where | ||
these values are to be found and located in a configuration map. | ||
category: Configuration, System | ||
homepage: https://github.com/roman/Haskell-etc | ||
author: Roman Gonzalez | ||
maintainer: [email protected] | ||
copyright: 2017 Roman Gonzalez | ||
maintainer: [email protected] | ||
copyright: 2017, 2018 Roman Gonzalez | ||
tested-with: GHC == 8.0.1, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.2 | ||
license: MIT | ||
license-file: LICENSE | ||
|
@@ -52,13 +52,15 @@ library | |
hs-source-dirs: src | ||
ghc-options: -Wall | ||
build-depends: | ||
base >=4.7 && <5 | ||
, aeson >=0.11 | ||
, rio >= 0.0.1.0 | ||
, typed-process >= 0.1.1 | ||
, unliftio >= 0.1.1.0 | ||
, text >= 0.0.1.0 | ||
, hashable >=1.2 | ||
base >=4.7 && <5 | ||
, aeson >=0.11 | ||
, hashable >=1.2 | ||
, rio >=0.0.1.0 | ||
, text >=0.0.1.0 | ||
-- NOTE: bellow are rio dependencies that help the stack resolver, not | ||
-- really required by etc | ||
, typed-process >=0.1.1 | ||
, unliftio >=0.1.1.0 | ||
|
||
exposed-modules: | ||
System.Etc | ||
|
@@ -110,10 +112,10 @@ test-suite etc-testsuite | |
test | ||
ghc-options: -Wall | ||
build-depends: | ||
base >=4.7 | ||
, aeson >=0.11 | ||
, rio >=0.0.1.0 | ||
, tasty >=0.11 | ||
base >=4.7 | ||
, aeson >=0.11 | ||
, rio >=0.0.1.0 | ||
, tasty >=0.11 | ||
, tasty-hunit >=0.9 | ||
, etc | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters