Skip to content

Commit

Permalink
commit cabal file as per stack recommendation
Browse files Browse the repository at this point in the history
  • Loading branch information
tanakadesilva committed Aug 18, 2020
1 parent 45ce574 commit 96e5945
Show file tree
Hide file tree
Showing 2 changed files with 119 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
.stack-work/
servant-ts.cabal
*~
*~
118 changes: 118 additions & 0 deletions servant-ts.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 860783959b5616f318a984785d3e5c38a78fcade8f382d3f84aabb00cdf67dae

name: servant-ts
version: 0.1.0.0
description: Please see the README on GitHub at <https://github.com/micahhahn/servant-ts#readme>
homepage: https://github.com/micahhahn/servant-ts#readme
bug-reports: https://github.com/micahhahn/servant-ts/issues
author: Micah Hahn
maintainer: [email protected]
copyright: 2019 Micah Hahn
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md

source-repository head
type: git
location: https://github.com/micahhahn/servant-ts

library
exposed-modules:
Servant.TS
Servant.TS.Core
Servant.TS.Gen
Servant.TS.Internal
Servant.TS.TH
other-modules:
Paths_servant_ts
hs-source-dirs:
src
build-depends:
aeson
, base >=4.7 && <5
, containers
, primitive
, recursion-schemes
, servant
, servant-foreign
, tagged
, tasty
, tasty-hunit
, template-haskell
, text
, th-abstraction
, time
, unordered-containers
, uuid
, vector
default-language: Haskell2010

executable servant-ts-examples
main-is: Main.hs
other-modules:
Paths_servant_ts
hs-source-dirs:
examples
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
aeson
, base >=4.7 && <5
, containers
, primitive
, recursion-schemes
, servant
, servant-foreign
, servant-ts
, tagged
, tasty
, tasty-hunit
, template-haskell
, text
, th-abstraction
, time
, unordered-containers
, uuid
, vector
default-language: Haskell2010

test-suite servant-ts-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Servant.TS.GenericTests
Servant.TS.InstanceTests
Servant.TS.TestHelpers
Servant.TS.TestHelperTests
Paths_servant_ts
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
aeson
, base >=4.7 && <5
, containers
, primitive
, recursion-schemes
, servant
, servant-foreign
, servant-ts
, tagged
, tasty
, tasty-hunit
, template-haskell
, text
, th-abstraction
, time
, unordered-containers
, uuid
, vector
default-language: Haskell2010

0 comments on commit 96e5945

Please sign in to comment.