matrix-media-expanded/matrix-media-expanded.cabal

124 lines
2.5 KiB
Text
Raw Permalink Normal View History

2021-05-31 23:19:51 +00:00
cabal-version: 2.4
2023-06-10 08:57:15 +00:00
name: matrix-media-expanded
2021-05-31 23:19:51 +00:00
version: 0.1.0.0
2023-06-10 08:57:15 +00:00
license-file: LICENSE
copyright: 2023 Charlotte 🦝 Delenk
maintainer: lotte@chir.rs
author: Charlotte 🦝 Delenk
2021-05-31 23:19:51 +00:00
category: Web
-- TODO: Before hackage release.
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
extra-source-files:
LICENSE
README.md
common shared
ghc-options:
-Wall -Wincomplete-record-updates -Wincomplete-uni-patterns
-Wmissing-deriving-strategies -Wunused-foralls -Wunused-foralls
-fprint-explicit-foralls -fprint-explicit-kinds
2021-05-31 23:19:51 +00:00
mixins:
base hiding (Prelude),
relude (Relude as Prelude, Relude.Container.One),
relude
default-extensions:
2022-01-13 23:23:29 +00:00
NoStarIsType
BangPatterns
ConstraintKinds
DataKinds
DeriveDataTypeable
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveLift
DeriveTraversable
DerivingStrategies
DerivingVia
EmptyCase
EmptyDataDecls
EmptyDataDeriving
ExistentialQuantification
ExplicitForAll
2021-05-31 23:19:51 +00:00
FlexibleContexts
FlexibleInstances
2022-01-13 23:23:29 +00:00
GADTSyntax
GeneralisedNewtypeDeriving
ImportQualifiedPost
2021-05-31 23:19:51 +00:00
KindSignatures
LambdaCase
MultiParamTypeClasses
MultiWayIf
2022-01-13 23:23:29 +00:00
NumericUnderscores
2021-05-31 23:19:51 +00:00
OverloadedStrings
2022-01-13 23:23:29 +00:00
PolyKinds
PostfixOperators
RankNTypes
2021-05-31 23:19:51 +00:00
ScopedTypeVariables
2022-01-13 23:23:29 +00:00
StandaloneDeriving
StandaloneKindSignatures
2021-05-31 23:19:51 +00:00
TupleSections
2022-01-13 23:23:29 +00:00
TypeApplications
TypeFamilies
TypeOperators
2021-05-31 23:19:51 +00:00
ViewPatterns
build-depends:
, aeson
, async
, base >=4.13.0.0 && <4.18.0.0.0
, data-default
, directory
, filepath
, mtl
, optics-core
, profunctors
, relude >=1.0
, shower
2023-06-10 14:12:37 +00:00
, text
, time
, with-utf8
hs-source-dirs: src
default-language: Haskell2010
2023-06-10 14:12:37 +00:00
library
2023-06-10 14:28:09 +00:00
import: shared
2023-06-10 14:12:37 +00:00
exposed-modules:
Codec.Multibase
2023-06-10 14:28:09 +00:00
Codec.Multibase.Error
Codec.Multibase.Identity
2023-06-10 14:12:37 +00:00
2023-06-10 08:57:15 +00:00
executable matrix-media-expanded
import: shared
main-is: Main.hs
2023-06-10 14:12:37 +00:00
test-suite test
2023-06-10 14:28:09 +00:00
import: shared
2023-06-10 14:12:37 +00:00
build-depends:
, tasty
, tasty-hunit
2023-06-10 14:28:09 +00:00
, tasty-quickcheck
, tasty-smallcheck
type: exitcode-stdio-1.0
2023-06-10 14:12:37 +00:00
hs-source-dirs: test
2023-06-10 14:28:09 +00:00
main-is: Test.hs
ghc-options: -main-is Test
2023-06-10 14:12:37 +00:00
other-modules:
Codec.Multibase.Error
2023-06-10 14:28:09 +00:00
Codec.Multibase.Identity
Test.Codec
Test.Codec.Multibase
Test.Codec.Multibase.Identity