unison/unison-cli/unison-cli.cabal

609 lines
12 KiB
Plaintext
Raw Normal View History

2021-10-12 21:42:46 +03:00
cabal-version: 1.12
2022-07-22 18:41:59 +03:00
-- This file has been generated from package.yaml by hpack version 0.34.4.
2021-10-12 21:42:46 +03:00
--
-- see: https://github.com/sol/hpack
name: unison-cli
version: 0.0.0
homepage: https://github.com/unisonweb/unison#readme
bug-reports: https://github.com/unisonweb/unison/issues
copyright: Copyright (C) 2013-2018 Unison Computing, PBC and contributors
license: MIT
license-file: LICENSE
build-type: Simple
source-repository head
type: git
location: https://github.com/unisonweb/unison
flag optimized
manual: True
default: False
library
exposed-modules:
Compat
Unison.Auth.CredentialFile
Unison.Auth.CredentialManager
Unison.Auth.Discovery
Unison.Auth.HTTPClient
Unison.Auth.Tokens
Unison.Auth.Types
2022-07-29 02:11:31 +03:00
Unison.Cli.Monad
Unison.Cli.MonadUtils
Unison.Codebase.Editor.AuthorInfo
Unison.Codebase.Editor.HandleInput
Unison.Codebase.Editor.HandleInput.AuthLogin
Unison.Codebase.Editor.HandleInput.MoveBranch
Unison.Codebase.Editor.HandleInput.NamespaceDependencies
Unison.Codebase.Editor.Input
Unison.Codebase.Editor.Output
Unison.Codebase.Editor.Output.BranchDiff
Unison.Codebase.Editor.Output.DumpNamespace
Unison.Codebase.Editor.Output.PushPull
Unison.Codebase.Editor.Propagate
2022-01-12 23:22:29 +03:00
Unison.Codebase.Editor.Slurp
Unison.Codebase.Editor.SlurpComponent
Unison.Codebase.Editor.SlurpResult
Unison.Codebase.Editor.TodoOutput
2022-05-13 01:03:00 +03:00
Unison.Codebase.Editor.UCMVersion
Unison.Codebase.Editor.UriParser
Unison.Codebase.Editor.VersionParser
Unison.Codebase.TranscriptParser
Unison.CommandLine
Unison.CommandLine.Completion
Unison.CommandLine.DisplayValues
Unison.CommandLine.FuzzySelect
Unison.CommandLine.Globbing
Unison.CommandLine.InputPattern
Unison.CommandLine.InputPatterns
Unison.CommandLine.Main
Unison.CommandLine.OutputMessages
Unison.CommandLine.Welcome
Unison.Share.Codeserver
2022-04-05 01:10:38 +03:00
Unison.Share.Sync
Unison.Share.Sync.Types
Unison.Util.HTTP
hs-source-dirs:
src
default-extensions:
ApplicativeDo
BangPatterns
BlockArguments
2022-07-22 18:41:59 +03:00
DeriveAnyClass
DeriveFunctor
DeriveFoldable
DeriveTraversable
DeriveGeneric
DerivingStrategies
2022-07-22 18:41:59 +03:00
DerivingVia
DoAndIfThenElse
2022-04-05 01:10:38 +03:00
DuplicateRecordFields
FlexibleContexts
FlexibleInstances
2022-07-22 18:41:59 +03:00
GADTs
GeneralizedNewtypeDeriving
2022-07-28 21:28:12 +03:00
InstanceSigs
LambdaCase
MultiParamTypeClasses
NamedFieldPuns
2022-07-25 20:24:07 +03:00
NumericUnderscores
2022-04-05 01:10:38 +03:00
OverloadedLabels
OverloadedStrings
PatternSynonyms
RankNTypes
ScopedTypeVariables
TupleSections
TypeApplications
ViewPatterns
ghc-options: -Wall
build-depends:
ListLike
, aeson
, aeson-pretty
, async
, base
2022-04-12 15:40:42 +03:00
, bytes
, bytestring
, concurrent-output
, configurator
, containers >=0.6.3
, cryptonite
, directory
, either
, errors
, exceptions
, extra
, filepath
2022-04-11 17:12:11 +03:00
, generic-lens
, haskeline
, http-client >=0.7.6
, http-client-tls
, http-types
, jwt
2022-06-23 17:25:01 +03:00
, ki
, lens
, lock-file
2022-06-11 01:30:29 +03:00
, megaparsec
, memory
, mtl
, network-uri
2021-11-19 00:20:58 +03:00
, nonempty-containers
, open-browser
, pretty-simple
, random >=1.2.0
, regex-tdfa
, semialign
2022-04-07 00:48:59 +03:00
, servant
, servant-client
, stm
, text
, these
, time
, transformers
2022-04-05 01:10:38 +03:00
, unison-codebase
, unison-codebase-sqlite
, unison-codebase-sqlite-hashing-v2
, unison-core1
, unison-parser-typechecker
, unison-prelude
2022-03-09 20:21:24 +03:00
, unison-pretty-printer
2022-04-05 01:10:38 +03:00
, unison-share-api
2022-04-20 05:29:24 +03:00
, unison-sqlite
, unison-util
2022-04-12 22:51:03 +03:00
, unison-util-base32hex
, unison-util-relation
, unliftio
2022-07-13 17:56:21 +03:00
, uri-encode
2022-04-12 23:22:04 +03:00
, vector
, wai
, warp
2022-07-19 19:20:36 +03:00
, witherable
if flag(optimized)
ghc-options: -O2 -funbox-strict-fields
if !os(windows)
build-depends:
unix
default-language: Haskell2010
executable cli-integration-tests
2021-10-24 11:08:34 +03:00
main-is: Suite.hs
other-modules:
IntegrationTests.ArgumentParsing
hs-source-dirs:
integration-tests
default-extensions:
ApplicativeDo
BangPatterns
2021-10-24 11:08:34 +03:00
BlockArguments
2022-07-22 18:41:59 +03:00
DeriveAnyClass
2021-10-24 11:08:34 +03:00
DeriveFunctor
DeriveFoldable
DeriveTraversable
DeriveGeneric
2021-10-24 11:08:34 +03:00
DerivingStrategies
2022-07-22 18:41:59 +03:00
DerivingVia
2021-10-24 11:08:34 +03:00
DoAndIfThenElse
2022-04-05 01:10:38 +03:00
DuplicateRecordFields
2021-10-24 11:08:34 +03:00
FlexibleContexts
FlexibleInstances
2022-07-22 18:41:59 +03:00
GADTs
GeneralizedNewtypeDeriving
2022-07-28 21:28:12 +03:00
InstanceSigs
2021-10-24 11:08:34 +03:00
LambdaCase
MultiParamTypeClasses
NamedFieldPuns
2022-07-25 20:24:07 +03:00
NumericUnderscores
2022-04-05 01:10:38 +03:00
OverloadedLabels
OverloadedStrings
PatternSynonyms
RankNTypes
2021-10-24 11:08:34 +03:00
ScopedTypeVariables
TupleSections
TypeApplications
ViewPatterns
ghc-options: -Wall -W -threaded -rtsopts "-with-rtsopts=-N -T" -v0
2022-02-19 02:48:20 +03:00
build-tools:
unison
2021-10-24 11:08:34 +03:00
build-depends:
ListLike
, aeson
, aeson-pretty
, async
, base
2022-04-12 15:40:42 +03:00
, bytes
, bytestring
, code-page
, concurrent-output
, configurator
, containers >=0.6.3
, cryptonite
, directory
2021-10-24 11:08:34 +03:00
, easytest
, either
, errors
, exceptions
, extra
, filepath
2022-04-11 17:12:11 +03:00
, generic-lens
, haskeline
, http-client >=0.7.6
, http-client-tls
, http-types
, jwt
2022-06-23 17:25:01 +03:00
, ki
, lens
, lock-file
2022-06-11 01:30:29 +03:00
, megaparsec
, memory
, mtl
, network-uri
2021-11-19 00:20:58 +03:00
, nonempty-containers
, open-browser
, pretty-simple
2021-10-24 11:08:34 +03:00
, process
, random >=1.2.0
, regex-tdfa
, semialign
2022-04-07 00:48:59 +03:00
, servant
, servant-client
2021-10-24 11:08:34 +03:00
, shellmet
, stm
2021-10-24 11:08:34 +03:00
, text
, these
2021-11-03 19:59:44 +03:00
, time
, transformers
2022-04-05 01:10:38 +03:00
, unison-codebase
, unison-codebase-sqlite
, unison-codebase-sqlite-hashing-v2
2021-10-24 11:08:34 +03:00
, unison-core1
, unison-parser-typechecker
, unison-prelude
2022-03-09 20:21:24 +03:00
, unison-pretty-printer
2022-04-05 01:10:38 +03:00
, unison-share-api
2022-04-20 05:29:24 +03:00
, unison-sqlite
, unison-util
2022-04-12 22:51:03 +03:00
, unison-util-base32hex
, unison-util-relation
, unliftio
2022-07-13 17:56:21 +03:00
, uri-encode
2022-04-12 23:22:04 +03:00
, vector
, wai
, warp
2022-07-19 19:20:36 +03:00
, witherable
2021-10-24 11:08:34 +03:00
if flag(optimized)
ghc-options: -O2 -funbox-strict-fields
default-language: Haskell2010
executable transcripts
main-is: Transcripts.hs
hs-source-dirs:
transcripts
default-extensions:
ApplicativeDo
BangPatterns
BlockArguments
2022-07-22 18:41:59 +03:00
DeriveAnyClass
DeriveFunctor
DeriveFoldable
DeriveTraversable
DeriveGeneric
DerivingStrategies
2022-07-22 18:41:59 +03:00
DerivingVia
DoAndIfThenElse
2022-04-05 01:10:38 +03:00
DuplicateRecordFields
FlexibleContexts
FlexibleInstances
2022-07-22 18:41:59 +03:00
GADTs
GeneralizedNewtypeDeriving
2022-07-28 21:28:12 +03:00
InstanceSigs
LambdaCase
MultiParamTypeClasses
NamedFieldPuns
2022-07-25 20:24:07 +03:00
NumericUnderscores
2022-04-05 01:10:38 +03:00
OverloadedLabels
OverloadedStrings
PatternSynonyms
RankNTypes
ScopedTypeVariables
TupleSections
TypeApplications
ViewPatterns
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -v0
build-depends:
ListLike
, aeson
, aeson-pretty
, async
, base
2022-04-12 15:40:42 +03:00
, bytes
, bytestring
, code-page
, concurrent-output
, configurator
, containers >=0.6.3
, cryptonite
, directory
, easytest
, either
, errors
, exceptions
, extra
, filepath
2022-04-11 17:12:11 +03:00
, generic-lens
, haskeline
, http-client >=0.7.6
, http-client-tls
, http-types
, jwt
2022-06-23 17:25:01 +03:00
, ki
, lens
, lock-file
2022-06-11 01:30:29 +03:00
, megaparsec
, memory
, mtl
, network-uri
2021-11-19 00:20:58 +03:00
, nonempty-containers
, open-browser
, pretty-simple
, process
, random >=1.2.0
, regex-tdfa
, semialign
2022-04-07 00:48:59 +03:00
, servant
, servant-client
, shellmet
, stm
, text
, these
, time
, transformers
, unison-cli
2022-04-05 01:10:38 +03:00
, unison-codebase
, unison-codebase-sqlite
, unison-codebase-sqlite-hashing-v2
, unison-core1
, unison-parser-typechecker
, unison-prelude
2022-03-09 20:21:24 +03:00
, unison-pretty-printer
2022-04-05 01:10:38 +03:00
, unison-share-api
2022-04-20 05:29:24 +03:00
, unison-sqlite
, unison-util
2022-04-12 22:51:03 +03:00
, unison-util-base32hex
, unison-util-relation
, unliftio
2022-07-13 17:56:21 +03:00
, uri-encode
2022-04-12 23:22:04 +03:00
, vector
, wai
, warp
2022-07-19 19:20:36 +03:00
, witherable
if flag(optimized)
ghc-options: -O2 -funbox-strict-fields
default-language: Haskell2010
2021-10-12 21:42:46 +03:00
executable unison
main-is: Main.hs
other-modules:
ArgParse
System.Path
Version
hs-source-dirs:
unison
default-extensions:
ApplicativeDo
BangPatterns
2021-10-12 21:42:46 +03:00
BlockArguments
2022-07-22 18:41:59 +03:00
DeriveAnyClass
2021-10-12 21:42:46 +03:00
DeriveFunctor
DeriveFoldable
DeriveTraversable
DeriveGeneric
2021-10-12 21:42:46 +03:00
DerivingStrategies
2022-07-22 18:41:59 +03:00
DerivingVia
2021-10-12 21:42:46 +03:00
DoAndIfThenElse
2022-04-05 01:10:38 +03:00
DuplicateRecordFields
2021-10-12 21:42:46 +03:00
FlexibleContexts
FlexibleInstances
2022-07-22 18:41:59 +03:00
GADTs
GeneralizedNewtypeDeriving
2022-07-28 21:28:12 +03:00
InstanceSigs
2021-10-12 21:42:46 +03:00
LambdaCase
MultiParamTypeClasses
NamedFieldPuns
2022-07-25 20:24:07 +03:00
NumericUnderscores
2022-04-05 01:10:38 +03:00
OverloadedLabels
OverloadedStrings
PatternSynonyms
RankNTypes
2021-10-12 21:42:46 +03:00
ScopedTypeVariables
TupleSections
TypeApplications
ViewPatterns
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-I0 -optP-Wno-nonportable-include-path
2021-10-12 21:42:46 +03:00
build-depends:
ListLike
, aeson
, aeson-pretty
, async
, base
2022-04-12 15:40:42 +03:00
, bytes
2021-10-13 22:36:35 +03:00
, bytestring
, code-page
, concurrent-output
2021-10-12 21:42:46 +03:00
, configurator
, containers >=0.6.3
, cryptonite
2021-10-12 21:42:46 +03:00
, directory
, either
2021-10-12 21:42:46 +03:00
, errors
, exceptions
, extra
2021-10-12 21:42:46 +03:00
, filepath
2022-04-11 17:12:11 +03:00
, generic-lens
, haskeline
, http-client >=0.7.6
, http-client-tls
, http-types
, jwt
2022-06-23 17:25:01 +03:00
, ki
, lens
, lock-file
2022-06-11 01:30:29 +03:00
, megaparsec
, memory
2021-10-12 21:42:46 +03:00
, mtl
, network-uri
2021-11-19 00:20:58 +03:00
, nonempty-containers
, open-browser
2021-10-12 21:42:46 +03:00
, optparse-applicative >=0.16.1.0
, pretty-simple
, random >=1.2.0
, regex-tdfa
, semialign
2022-04-07 00:48:59 +03:00
, servant
, servant-client
2021-10-12 21:42:46 +03:00
, shellmet
, stm
2021-10-12 21:42:46 +03:00
, template-haskell
, temporary
, text
, these
, time
, transformers
, unison-cli
2022-04-05 01:10:38 +03:00
, unison-codebase
, unison-codebase-sqlite
, unison-codebase-sqlite-hashing-v2
2021-10-12 21:42:46 +03:00
, unison-core1
, unison-parser-typechecker
, unison-prelude
2022-03-09 20:21:24 +03:00
, unison-pretty-printer
2022-04-05 01:10:38 +03:00
, unison-share-api
2022-04-20 05:29:24 +03:00
, unison-sqlite
, unison-util
2022-04-12 22:51:03 +03:00
, unison-util-base32hex
, unison-util-relation
2021-10-12 21:42:46 +03:00
, unliftio
2022-07-13 17:56:21 +03:00
, uri-encode
2022-04-12 23:22:04 +03:00
, vector
, wai
, warp
2022-07-19 19:20:36 +03:00
, witherable
2021-10-12 21:42:46 +03:00
if flag(optimized)
ghc-options: -O2 -funbox-strict-fields
default-language: Haskell2010
test-suite cli-tests
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Unison.Test.ClearCache
Unison.Test.GitSync
Unison.Test.Ucm
Unison.Test.UriParser
Unison.Test.VersionParser
hs-source-dirs:
tests
default-extensions:
ApplicativeDo
BangPatterns
BlockArguments
2022-07-22 18:41:59 +03:00
DeriveAnyClass
DeriveFunctor
DeriveFoldable
DeriveTraversable
DeriveGeneric
DerivingStrategies
2022-07-22 18:41:59 +03:00
DerivingVia
DoAndIfThenElse
2022-04-05 01:10:38 +03:00
DuplicateRecordFields
FlexibleContexts
FlexibleInstances
2022-07-22 18:41:59 +03:00
GADTs
GeneralizedNewtypeDeriving
2022-07-28 21:28:12 +03:00
InstanceSigs
LambdaCase
MultiParamTypeClasses
NamedFieldPuns
2022-07-25 20:24:07 +03:00
NumericUnderscores
2022-04-05 01:10:38 +03:00
OverloadedLabels
OverloadedStrings
PatternSynonyms
RankNTypes
ScopedTypeVariables
TupleSections
TypeApplications
ViewPatterns
ghc-options: -Wall
build-depends:
ListLike
, aeson
, aeson-pretty
, async
, base
2022-04-12 15:40:42 +03:00
, bytes
, bytestring
, code-page
, concurrent-output
, configurator
, containers >=0.6.3
, cryptonite
, directory
, easytest
, either
, errors
, exceptions
, extra
, filepath
2022-04-11 17:12:11 +03:00
, generic-lens
, haskeline
, here
, http-client >=0.7.6
, http-client-tls
, http-types
, jwt
2022-06-23 17:25:01 +03:00
, ki
, lens
, lock-file
2022-06-11 01:30:29 +03:00
, megaparsec
, memory
, mtl
, network-uri
2021-11-19 00:20:58 +03:00
, nonempty-containers
, open-browser
, pretty-simple
, random >=1.2.0
, regex-tdfa
, semialign
2022-04-07 00:48:59 +03:00
, servant
, servant-client
, shellmet
, stm
, temporary
, text
, these
, time
, transformers
, unison-cli
2022-04-05 01:10:38 +03:00
, unison-codebase
, unison-codebase-sqlite
, unison-codebase-sqlite-hashing-v2
, unison-core1
, unison-parser-typechecker
, unison-prelude
2022-03-09 20:21:24 +03:00
, unison-pretty-printer
2022-04-05 01:10:38 +03:00
, unison-share-api
2022-04-20 05:29:24 +03:00
, unison-sqlite
, unison-util
2022-04-12 22:51:03 +03:00
, unison-util-base32hex
, unison-util-relation
, unliftio
2022-07-13 17:56:21 +03:00
, uri-encode
2022-04-12 23:22:04 +03:00
, vector
, wai
, warp
2022-07-19 19:20:36 +03:00
, witherable
if flag(optimized)
ghc-options: -O2 -funbox-strict-fields
default-language: Haskell2010