mirror of https://github.com/voidlizard/hbs2
136 lines
3.6 KiB
Plaintext
136 lines
3.6 KiB
Plaintext
cabal-version: 3.0
|
|
name: hbs2-git-reposync
|
|
version: 0.1.0.0
|
|
-- synopsis:
|
|
-- description:
|
|
license: BSD-3-Clause
|
|
license-file: LICENSE
|
|
author: Dmitry Zuikov
|
|
maintainer: dzuikov@gmail.com
|
|
-- copyright:
|
|
category: Development
|
|
build-type: Simple
|
|
extra-doc-files: CHANGELOG.md
|
|
-- extra-source-files:
|
|
|
|
common shared-properties
|
|
ghc-options:
|
|
-Wall
|
|
-Wno-type-defaults
|
|
-fprint-potential-instances
|
|
-- -fno-warn-unused-matches
|
|
-- -fno-warn-unused-do-bind
|
|
-- -Werror=missing-methods
|
|
-- -Werror=incomplete-patterns
|
|
-- -fno-warn-unused-binds
|
|
|
|
|
|
default-language: Haskell2010
|
|
|
|
default-extensions:
|
|
ApplicativeDo
|
|
, BangPatterns
|
|
, BlockArguments
|
|
, ConstraintKinds
|
|
, DataKinds
|
|
, DeriveDataTypeable
|
|
, DeriveGeneric
|
|
, DerivingStrategies
|
|
, DerivingVia
|
|
, ExtendedDefaultRules
|
|
, FlexibleContexts
|
|
, FlexibleInstances
|
|
, GADTs
|
|
, GeneralizedNewtypeDeriving
|
|
, ImportQualifiedPost
|
|
, LambdaCase
|
|
, MultiParamTypeClasses
|
|
, OverloadedStrings
|
|
, QuasiQuotes
|
|
, RecordWildCards
|
|
, ScopedTypeVariables
|
|
, StandaloneDeriving
|
|
, TupleSections
|
|
, TypeApplications
|
|
, TypeOperators
|
|
, TypeFamilies
|
|
, TemplateHaskell
|
|
|
|
|
|
build-depends: hbs2-core, hbs2-peer
|
|
, attoparsec
|
|
, aeson
|
|
, async
|
|
, base16-bytestring
|
|
, bytestring
|
|
, cache
|
|
, containers
|
|
, streaming
|
|
, streaming-bytestring
|
|
, streaming-commons
|
|
, streaming-utils
|
|
, cryptonite
|
|
, directory
|
|
, exceptions
|
|
, filelock
|
|
, filepath
|
|
, filepattern
|
|
, generic-lens
|
|
, hashable
|
|
, http-conduit
|
|
, interpolatedstring-perl6
|
|
, memory
|
|
, microlens-platform
|
|
, mtl
|
|
, prettyprinter
|
|
, prettyprinter-ansi-terminal
|
|
, random
|
|
, resourcet
|
|
, safe
|
|
, saltine
|
|
, serialise
|
|
, split
|
|
, sqlite-simple
|
|
, stm
|
|
, suckless-conf
|
|
, temporary
|
|
, text
|
|
, time
|
|
, timeit
|
|
, transformers
|
|
, typed-process
|
|
, uniplate
|
|
, unliftio
|
|
, unliftio-core
|
|
, unordered-containers
|
|
, wai-app-file-cgi
|
|
, wai-extra
|
|
|
|
executable hbs2-git-reposync
|
|
import: shared-properties
|
|
main-is: ReposyncMain.hs
|
|
|
|
ghc-options:
|
|
-threaded
|
|
-rtsopts
|
|
"-with-rtsopts=-N4 -A64m -AL256m -I0"
|
|
|
|
other-modules:
|
|
|
|
-- other-extensions:
|
|
build-depends:
|
|
base, hbs2-core, hbs2-peer
|
|
, optparse-applicative
|
|
, unliftio
|
|
, terminal-progress-bar
|
|
, http-types
|
|
, scotty
|
|
, wai
|
|
, wai-middleware-static
|
|
, wai-extra
|
|
|
|
hs-source-dirs: .
|
|
default-language: Haskell2010
|
|
|
|
|