Skip to content

Commit

Permalink
Commit template.toml and 1 others
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobstanley committed Apr 14, 2019
1 parent 20fc116 commit e859bf3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
3 changes: 2 additions & 1 deletion template.toml
Expand Up @@ -31,10 +31,11 @@ templates = [
, "test/test.hs"
, ".gitignore"
, ".travis.yml"
, "CHANGELOG.md"
, "Setup.hs"
, "{{ project }}.cabal"
]

[config]
version = "0.1.0.0"
version = "0.0"
version_control = "git"
11 changes: 8 additions & 3 deletions {{ project }}.cabal
Expand Up @@ -34,9 +34,14 @@ source-repository head
type: git
location: git://github.com/{{ github_username }}/{{ project }}.git

custom-setup
setup-depends:
base >= 4.5 && < 5
, Cabal >= 1.22 && < 2.5

library
build-depends:
base >= 3 && < 5
base >= 4.5 && < 5
, bytestring >= 0.10 && < 0.11
, containers >= 0.5 && < 0.7
, errors >= 2.0 && < 2.4
Expand All @@ -62,7 +67,7 @@ library
executable {{ project }}
build-depends:
{{ project }}
, base >= 3 && < 5
, base
, optparse-applicative >= 0.14 && < 0.15

ghc-options:
Expand Down Expand Up @@ -106,7 +111,7 @@ benchmark bench
type:
exitcode-stdio-1.0

hs-source-dirs:
hs-source-dirs:
bench

main-is:
Expand Down

0 comments on commit e859bf3

Please sign in to comment.