-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
f46541b
commit ec3e3a6
Showing
4 changed files
with
36 additions
and
36 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
.stack-work/ | ||
fake-json.cabal | ||
*~ | ||
mkjson.cabal | ||
*~ |
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
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
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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
--- | ||
name: fake-json | ||
name: mkjson | ||
version: 0.1.0.0 | ||
github: "mfussenegger/fake-json" | ||
github: "mfussenegger/mkjson" | ||
license: MIT | ||
author: "Mathias Fußenegger" | ||
maintainer: "[email protected]" | ||
copyright: "2018 Mathias Fußenegger" | ||
copyright: "2019 Mathias Fußenegger" | ||
|
||
extra-source-files: | ||
- README.md | ||
- ChangeLog.md | ||
|
||
description: | | ||
Please see the README on GitHub at <https://github.com/mfussenegger/fake-json#readme> | ||
Please see the README on GitHub at <https://github.com/mfussenegger/mkjson#readme> | ||
ghc-options: | ||
- -Wall | ||
|
@@ -50,13 +50,13 @@ library: | |
source-dirs: src | ||
|
||
executables: | ||
fake-json: | ||
mkjson: | ||
main: Main.hs | ||
source-dirs: app | ||
ghc-options: | ||
- -rtsopts | ||
dependencies: | ||
- fake-json | ||
- mkjson | ||
when: | ||
- condition: flag(static) | ||
ld-options: | ||
|
@@ -65,30 +65,30 @@ executables: | |
- fPIC | ||
|
||
tests: | ||
fake-json-test: | ||
mkjson-test: | ||
main: spec.hs | ||
source-dirs: tests | ||
ghc-options: | ||
- -threaded | ||
- -rtsopts | ||
- -with-rtsopts=-N | ||
dependencies: | ||
- fake-json | ||
- mkjson | ||
|
||
fake-json-doctest: | ||
mkjson-doctest: | ||
main: doctests.hs | ||
source-dirs: tests | ||
dependencies: | ||
- fake-json | ||
- mkjson | ||
- Glob | ||
- doctest | ||
|
||
benchmarks: | ||
fake-json-benchmarks: | ||
mkjson-benchmarks: | ||
main: bench.hs | ||
source-dirs: benchmarks | ||
dependencies: | ||
- fake-json | ||
- mkjson | ||
- criterion | ||
|
||
flags: | ||
|